Skip to content

Commit

Permalink
update save_test.go to match the number of parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
myproblemchild committed Feb 16, 2024
1 parent e95237b commit db6f862
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firestore/save_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func TestSave(t *testing.T) {
if err = runSimpleTransaction(ctx, client); err != nil {
t.Fatalf("runSimpleTransaction: %v", err)
}
if err = infoTransaction(ctx, client); err != nil {
if _, err = infoTransaction(ctx, client); err != nil {
t.Fatalf("infoTransaction: %v", err)
}
if err = batchWrite(ctx, client); err != nil {
Expand Down

0 comments on commit db6f862

Please sign in to comment.