Skip to content

Commit

Permalink
Fixing postgres test
Browse files Browse the repository at this point in the history
  • Loading branch information
Jess O'Flanagan authored and runabol committed Oct 31, 2024
1 parent afe59dd commit 5e62b18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datastore/postgres/postgres_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,7 @@ func TestPostgresCreateAndGetTaskLogs(t *testing.T) {
})
assert.NoError(t, err)

logs, err := ds.GetTaskLogParts(ctx, t1.ID, "", 1, 10)
logs, err := ds.GetTaskLogParts(ctx, t1.ID, "line 1", 10, 1)
assert.NoError(t, err)
assert.Len(t, logs.Items, 1)
assert.Equal(t, "line 1", logs.Items[0].Contents)
Expand Down

0 comments on commit 5e62b18

Please sign in to comment.