Skip to content

Commit

Permalink
fmt: cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ChobobDev committed Jul 27, 2023
1 parent db60f21 commit 65f14e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions test-suite/src/array.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ CREATE TABLE Test (
sql: "INSERT INTO Test VALUES(5,'DOE', ['Jhon']);",
expected: Ok(Payload::Insert(1))
};

test! {
sql: "INSERT INTO Test (surname, name) VALUES ('DOE', ['Jane']);",
expected: Ok(Payload::Insert(1))
Expand Down Expand Up @@ -86,7 +86,6 @@ CREATE TABLE Test (
))
};


run!("DELETE FROM Item");
run!("DELETE FROM Target");
});
2 changes: 1 addition & 1 deletion test-suite/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
pub mod aggregate;
pub mod alter;
pub mod arithmetic;
pub mod array;
pub mod ast_builder;
pub mod basic;
pub mod bitwise_and;
Expand Down Expand Up @@ -42,7 +43,6 @@ pub mod unary_operator;
pub mod update;
pub mod validate;
pub mod values;
pub mod array;

pub mod tester;

Expand Down

0 comments on commit 65f14e0

Please sign in to comment.