Skip to content

Commit

Permalink
Updated test to remove typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jackphilippi committed Aug 26, 2024
1 parent 52bc0e4 commit 71ed3ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migrate/migrate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func TestMigration(t *testing.T) {
f := makeTestFS(4)
writeFile(f, 3, "SELECT * FROM bla;")

if err := migrate.FromFS(ctx, session, f); err == nil || !strings.Contains(err.Error(), "tempered") {
if err := migrate.FromFS(ctx, session, f); err == nil || !strings.Contains(err.Error(), "tampered") {
t.Fatal("expected error")
} else {
t.Log(err)
Expand Down

0 comments on commit 71ed3ea

Please sign in to comment.