Skip to content

Commit

Permalink
Fix doc tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ikrivosheev committed Sep 21, 2022
1 parent 612e667 commit e5284cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/extension/postgres/func.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ impl PgFunc {
/// use sea_query::{tests_cfg::*, *};
///
/// let query = Query::select()
/// .expr(PgFunc::any(Expr::val([0, 1])))
/// .expr(PgFunc::any(Expr::val(vec![0, 1])))
/// .to_owned();
///
/// assert_eq!(
Expand All @@ -266,7 +266,7 @@ impl PgFunc {
/// use sea_query::{tests_cfg::*, *};
///
/// let query = Query::select()
/// .expr(PgFunc::some(Expr::val([0, 1])))
/// .expr(PgFunc::some(Expr::val(vec![0, 1])))
/// .to_owned();
///
/// assert_eq!(
Expand All @@ -290,7 +290,7 @@ impl PgFunc {
/// use sea_query::{tests_cfg::*, *};
///
/// let query = Query::select()
/// .expr(PgFunc::all(Expr::val([0, 1])))
/// .expr(PgFunc::all(Expr::val(vec![0, 1])))
/// .to_owned();
///
/// assert_eq!(
Expand Down

0 comments on commit e5284cf

Please sign in to comment.