Run go fmt on repo

Signed-off-by: James Griffin <james@unsupervised.ca>
This commit is contained in:
2020-12-21 21:33:49 -04:00
parent ecafea7adf
commit 25727f6d20
3 changed files with 4 additions and 6 deletions

View File

@@ -56,5 +56,3 @@ func Test_get_guess3(t *testing.T) {
t.FailNow()
}
}

View File

@@ -48,7 +48,7 @@ func Test_distribution_sample2(t *testing.T) {
}
}
func Test_arrangement_sample1(t * testing.T) {
func Test_arrangement_sample1(t *testing.T) {
b := newBag("sample1.txt")
count := b.countArrangements()
@@ -59,7 +59,7 @@ func Test_arrangement_sample1(t * testing.T) {
}
}
func Test_arrangement_sample2(t * testing.T) {
func Test_arrangement_sample2(t *testing.T) {
b := newBag("sample2.txt")
count := b.countArrangements()
@@ -68,4 +68,4 @@ func Test_arrangement_sample2(t * testing.T) {
t.Logf("Expected 19208 arrangments, got %d", count)
t.FailNow()
}
}
}

View File

@@ -33,4 +33,4 @@ func Test_waypoint_navigate(t *testing.T) {
t.Logf("Expected a navigation result of 286, got %d", result)
t.FailNow()
}
}
}