Skip to content

Commit af3fbb1

Browse files
committed
fix
1 parent 5c10644 commit af3fbb1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/postgres_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ func TestPostgresSource_GetMinMaxSplitKey(t *testing.T) {
139139
defer tearDownFunc()
140140
min, max, err := postgresSourceTest.postgresSource.GetMinMaxSplitKey()
141141
assert.NoError(t, err)
142-
assert.Equal(t, int64(1), min)
143-
assert.Equal(t, int64(2), max)
142+
assert.Equal(t, uint64(1), min)
143+
assert.Equal(t, uint64(2), max)
144144
}
145145

146146
func TestPostgresSource_GetMinMaxTimeSplitKey(t *testing.T) {

0 commit comments

Comments
 (0)