aboutsummaryrefslogtreecommitdiff
path: root/plugin/file/zone_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/file/zone_test.go')
-rw-r--r--plugin/file/zone_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/file/zone_test.go b/plugin/file/zone_test.go
index c9ff174db..aa42fd870 100644
--- a/plugin/file/zone_test.go
+++ b/plugin/file/zone_test.go
@@ -21,10 +21,10 @@ func TestNameFromRight(t *testing.T) {
for i, tc := range tests {
got, shot := z.nameFromRight(tc.in, tc.labels)
if got != tc.expected {
- t.Errorf("Test %d: expected %s, got %s\n", i, tc.expected, got)
+ t.Errorf("Test %d: expected %s, got %s", i, tc.expected, got)
}
if shot != tc.shot {
- t.Errorf("Test %d: expected shot to be %t, got %t\n", i, tc.shot, shot)
+ t.Errorf("Test %d: expected shot to be %t, got %t", i, tc.shot, shot)
}
}
}