Skip to content

Commit

Permalink
Rename records variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jungaretti committed Sep 4, 2024
1 parent 257a92b commit 2eaa286
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/deploy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ records:
t.Fatal("did not deploy records", err)
}

recordsAfterDeployment, err := provider.AllRecords("plantbasedbacon.xyz")
records, err := provider.AllRecords("plantbasedbacon.xyz")
if err != nil {
t.Fatal("could not fetch records after deployment", err)
}

if len(recordsAfterDeployment) != 2 {
t.Fatal("expected 2 records after deployment, got", len(recordsAfterDeployment))
if len(records) != 2 {
t.Fatal("expected 2 records after deployment, got", len(records))
}
}

Expand Down

0 comments on commit 2eaa286

Please sign in to comment.