gtx


Branch: develop

Author
thewhodidthis <thewhodidthis@fastmail.com>
Date
Feb. 18 '23 11:08:49
Commit
299bc8539fbc5ee9db6cd5a2a9373c6df0af8190
Parent
c1d314c93f773c5ca62e278694fc587c44c95b12
Changes
diff --git a/helper_test.go b/helper_test.go
index 0b551b0..b09ccdb 100644
--- a/helper_test.go
+++ b/helper_test.go
@@ -19,9 +19,9 @@ func TestContains(t *testing.T) {
 }
 
 func TestDedupe(t *testing.T) {
-  dupes := []string{"one", "one", "two", "three", "three", "three"}
+	dupes := []string{"one", "one", "two", "three", "three", "three"}
 
-  if len(dedupe(dupes)) != 3 {
-    t.Fail()
-  }
+	if len(dedupe(dupes)) != 3 {
+		t.Fail()
+	}
 }