aboutsummaryrefslogtreecommitdiff
path: root/plugin/pkg/fall/fall_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/pkg/fall/fall_test.go')
-rw-r--r--plugin/pkg/fall/fall_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/pkg/fall/fall_test.go b/plugin/pkg/fall/fall_test.go
index 9988578f6..26cfbc2dc 100644
--- a/plugin/pkg/fall/fall_test.go
+++ b/plugin/pkg/fall/fall_test.go
@@ -23,7 +23,7 @@ func TestEqual(t *testing.T) {
func TestZero(t *testing.T) {
var f F
- if !f.Equal(Zero()) {
+ if !f.Equal(Zero) {
t.Errorf("F should be zero")
}
}
@@ -31,7 +31,7 @@ func TestZero(t *testing.T) {
func TestSetZonesFromArgs(t *testing.T) {
var f F
f.SetZonesFromArgs([]string{})
- if !f.Equal(Root()) {
+ if !f.Equal(Root) {
t.Errorf("F should have the root zone")
}