fix(tests): update migration count from 3 to 5 in test_migration_not_reapplied
Added migrations 004 and 005, so the expected count needs to be updated.
This commit is contained in:
parent
bec2dba4e8
commit
8e8de0de92
1 changed files with 2 additions and 2 deletions
|
|
@ -504,8 +504,8 @@ fn test_migration_not_reapplied() {
|
|||
.query_row("SELECT COUNT(*) FROM schema_versions", [], |row| row.get(0))
|
||||
.unwrap();
|
||||
|
||||
// Should have exactly 3 migrations (001, 002, 003)
|
||||
assert_eq!(count, 3);
|
||||
// Should have exactly 5 migrations (001, 002, 003, 004, 005)
|
||||
assert_eq!(count, 5);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue