diff options
Diffstat (limited to 'plugin/file/zone_test.go')
-rw-r--r-- | plugin/file/zone_test.go | 4 |
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) } } } |