diff --git a/internal/2015/DayOne/code_test.go b/internal/2015/DayOne/code_test.go index a18265b..93eedbf 100644 --- a/internal/2015/DayOne/code_test.go +++ b/internal/2015/DayOne/code_test.go @@ -23,7 +23,7 @@ func TestPartOne(t *testing.T) { t.Run(tt.name, func(t *testing.T) { got := PartOne(tt.input) if got != tt.expected { - t.Errorf("PartOne(%q) = %d, want %d", tt.input, got, tt.expected) + t.Errorf("PartOne() = %d, want %d", got, tt.expected) } }) } @@ -43,7 +43,7 @@ func TestPartTwo(t *testing.T) { t.Run(tt.name, func(t *testing.T) { got := PartTwo(tt.input) if got != tt.expected { - t.Errorf("PartTwo(%q) = %d, want %d", tt.input, got, tt.expected) + t.Errorf("PartTwo() = %d, want %d", got, tt.expected) } }) } diff --git a/internal/2015/DayThree/code_test.go b/internal/2015/DayThree/code_test.go index 86bb895..9138961 100644 --- a/internal/2015/DayThree/code_test.go +++ b/internal/2015/DayThree/code_test.go @@ -17,7 +17,7 @@ func TestPartOne(t *testing.T) { t.Run(tt.name, func(t *testing.T) { got := PartOne(tt.input) if got != tt.expected { - t.Errorf("PartOne(%q) = %d, want %d", tt.input, got, tt.expected) + t.Errorf("PartOne() = %d, want %d", got, tt.expected) } }) } @@ -38,7 +38,7 @@ func TestPartTwo(t *testing.T) { t.Run(tt.name, func(t *testing.T) { got := PartTwo(tt.input) if got != tt.expected { - t.Errorf("PartTwo(%q) = %d, want %d", tt.input, got, tt.expected) + t.Errorf("PartTwo() = %d, want %d", got, tt.expected) } }) } diff --git a/internal/2015/DayTwo/code_test.go b/internal/2015/DayTwo/code_test.go index 590033e..770407c 100644 --- a/internal/2015/DayTwo/code_test.go +++ b/internal/2015/DayTwo/code_test.go @@ -16,7 +16,7 @@ func TestPartOne(t *testing.T) { t.Run(tt.name, func(t *testing.T) { got := PartOne([]string{tt.input}) if got != tt.expected { - t.Errorf("PartOne(%q) = %d, want %d", tt.input, got, tt.expected) + t.Errorf("PartOne() = %d, want %d", got, tt.expected) } }) } @@ -36,7 +36,7 @@ func TestPartTwo(t *testing.T) { t.Run(tt.name, func(t *testing.T) { got := PartTwo([]string{tt.input}) if got != tt.expected { - t.Errorf("PartTwo(%q) = %d, want %d", tt.input, got, tt.expected) + t.Errorf("PartTwo() = %d, want %d", got, tt.expected) } }) }