diff --git a/internal/test_txn_incr2.go b/internal/test_txn_incr2.go index e0598891..addaaef6 100644 --- a/internal/test_txn_incr2.go +++ b/internal/test_txn_incr2.go @@ -31,10 +31,12 @@ func testTxIncr2(stageHarness *test_case_harness.TestCaseHarness) error { Commands: [][]string{ {"INCR", randomKey}, {"INCR", randomKey}, + {"GET", randomKey}, }, Assertions: []resp_assertions.RESPAssertion{ resp_assertions.NewIntegerAssertion(1), resp_assertions.NewIntegerAssertion(2), + resp_assertions.NewStringAssertion("2"), }, }