Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
emosbaugh committed Aug 20, 2019
1 parent e3f33c6 commit 7d65c0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/database/postgres/constraint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func TestRemoveConstrantStatement(t *testing.T) {
Name: "my_table_id_sequence_key",
Columns: []string{"id", "sequence"},
},
want: "alter table my_table drop constraint my_table_id_sequence_key",
want: `alter table my_table drop constraint "my_table_id_sequence_key"`,
},
}
for _, tt := range tests {
Expand Down

0 comments on commit 7d65c0b

Please sign in to comment.