Skip to content

Commit

Permalink
fix old unit test issues on preview
Browse files Browse the repository at this point in the history
  • Loading branch information
jchappelow committed Nov 15, 2024
1 parent b7682d4 commit c7c46ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/engine/generate/actions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func TestGenerateActionBody(t *testing.T) {
Statement: `
INSERT INTO test_schema.id_and_int (id, intval)
VALUES
(uuid_generate_v5('31276fd4-105f-4ff7-9f64-644942c14b79'::UUID, format('%s-%s'::TEXT, $1::TEXT, $2::TEXT)), $2::INT8);`,
(uuid_generate_v5('31276fd4-105f-4ff7-9f64-644942c14b79'::UUID, format('%s-%s', $1::TEXT, $2::TEXT)), $2::INT8);`,
},
},
},
Expand Down
2 changes: 1 addition & 1 deletion internal/sql/pg/repl_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func Test_repl(t *testing.T) {
t.Fatal(err)
}

wantCommitHash, _ := hex.DecodeString("cb390afbf808256307ee0927999805ee3d5af193772e2c9b71823fbc1fe8867f")
wantCommitHash, _ := hex.DecodeString("1fd01e9d38e322285723643f27123762c3d7fd22761f7ab4de57e0a947f8127b")

var wg sync.WaitGroup
wg.Add(1)
Expand Down

0 comments on commit c7c46ec

Please sign in to comment.