Skip to content

Commit

Permalink
fix: update the query count for MSSQL now that it sets the isolation …
Browse files Browse the repository at this point in the history
…settings
  • Loading branch information
jacek-prisma committed Nov 27, 2024
1 parent 6560c62 commit a3d3e91
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ mod metrics {

match runner.connector_version() {
Sqlite(_) => assert_eq!(total_queries, 2),
SqlServer(_) => assert_eq!(total_queries, 10),
SqlServer(_) => assert_eq!(total_queries, 12),
MongoDb(_) => assert_eq!(total_queries, 5),
CockroachDb(_) => assert_eq!(total_queries, 2),
MySql(_) => assert_eq!(total_queries, 9),
Expand Down

0 comments on commit a3d3e91

Please sign in to comment.