Skip to content

Commit

Permalink
Add quotes to 123 number strings in state conformance tests
Browse files Browse the repository at this point in the history
Signed-off-by: joshvanl <[email protected]>
  • Loading branch information
JoshVanL committed Aug 4, 2023
1 parent 1430155 commit dc8244f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/conformance/state/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -1177,8 +1177,8 @@ func ConformanceTests(t *testing.T, props map[string]string, statestore state.St

assert.Equal(t, key+"-ttl-expire-time-bulk-1", res[0].Key)
assert.Equal(t, key+"-ttl-expire-time-bulk-2", res[1].Key)
assert.Equal(t, []byte("123"), res[0].Data)
assert.Equal(t, []byte("234"), res[1].Data)
assert.Equal(t, []byte(`"123"`), res[0].Data)
assert.Equal(t, []byte(`"234"`), res[1].Data)

for i := range res {
if config.HasOperation("transaction") {
Expand Down

0 comments on commit dc8244f

Please sign in to comment.