Skip to content

Commit

Permalink
Roll back some prev change
Browse files Browse the repository at this point in the history
  • Loading branch information
islamaliev committed Jun 26, 2024
1 parent 3ee0571 commit 316f55c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/integration/utils2.go
Original file line number Diff line number Diff line change
Expand Up @@ -1228,7 +1228,9 @@ func createDocViaColSave(
docs = []*client.Document{doc}
}
}
require.NoError(s.t, err)
if err != nil {
return nil, err
}

txn := getTransaction(s, node, immutable.None[int](), action.ExpectedError)

Expand Down Expand Up @@ -1271,7 +1273,9 @@ func createDocViaColCreate(
docs = []*client.Document{doc}
}
}
require.NoError(s.t, err)
if err != nil {
return nil, err
}

txn := getTransaction(s, node, immutable.None[int](), action.ExpectedError)

Expand Down

0 comments on commit 316f55c

Please sign in to comment.