Skip to content

Commit

Permalink
Make the module importable
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobMcKenzieSmarty committed Sep 3, 2024
1 parent 18dc784 commit 6babadd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module calc-lib
module github.com/JacobMcKenzieSmarty/calc-lib

go 1.23.0
2 changes: 1 addition & 1 deletion main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func assertEqual(t *testing.T, expected, actual any) {
func assertError(t *testing.T, expected, actual error) {
if !errors.Is(expected, actual) {
t.Helper() //don't pay attention to this as part of the call stack.
t.Errorf("expected %v, got %v", expected, actual)
t.Errorf("Expected %v, got %v", expected, actual)
}
}

Expand Down

0 comments on commit 6babadd

Please sign in to comment.