Skip to content

Commit 4f2c6de

Browse files
Constant should be first
1 parent 355c623 commit 4f2c6de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

QueryBuilder.Tests/MySqlExecutionTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Color TEXT NULL
5050

5151
var rows = db.Query("Cars").Get().ToList();
5252

53-
Assert.Equal(rows.Count(), 1);
53+
Assert.Equal(1, rows.Count());
5454

5555
db.Statement("DROP TABLE IF EXISTS `Cars`");
5656
}

0 commit comments

Comments
 (0)