We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 257a92b commit 2eaa286Copy full SHA for 2eaa286
cmd/deploy_test.go
@@ -33,13 +33,13 @@ records:
33
t.Fatal("did not deploy records", err)
34
}
35
36
- recordsAfterDeployment, err := provider.AllRecords("plantbasedbacon.xyz")
+ records, err := provider.AllRecords("plantbasedbacon.xyz")
37
if err != nil {
38
t.Fatal("could not fetch records after deployment", err)
39
40
41
- if len(recordsAfterDeployment) != 2 {
42
- t.Fatal("expected 2 records after deployment, got", len(recordsAfterDeployment))
+ if len(records) != 2 {
+ t.Fatal("expected 2 records after deployment, got", len(records))
43
44
45
0 commit comments