From bc12fee58e8bd86672793ae37d9f924158afb482 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Fri, 13 Jul 2018 16:13:40 +0200 Subject: create the Bug structure --- bug/comment_test.go | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 bug/comment_test.go (limited to 'bug/comment_test.go') diff --git a/bug/comment_test.go b/bug/comment_test.go deleted file mode 100644 index 7079f923..00000000 --- a/bug/comment_test.go +++ /dev/null @@ -1,12 +0,0 @@ -package bug - -import "testing" - -func TestCommentEquality(t *testing.T) { - c1 := Comment{} - c2 := Comment{} - - if c1 != c2 { - t.Fatal() - } -} -- cgit