Skip to content

Commit a10120a

Browse files
committed
Updated paths for testing
1 parent ba6c2a6 commit a10120a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

handler_test.go

+7-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,15 @@ import (
55
"os"
66
"testing"
77

8-
"github.com/smartystreets/training-cohort/calcy-lib/calc"
8+
"github.com/sryanh/calcy-lib/calc"
99
)
1010

11+
func assertEqual(t *testing.T, a any, b any) {
12+
if a != b {
13+
t.Error("Expected them to be equal but they weren't.")
14+
}
15+
}
16+
func assertFail(t *testing.T, a any, b any) {}
1117
func TestMissingInput(t *testing.T) {
1218
var values []string
1319
handle := NewHandler(os.Stdout, calc.Addition{})

0 commit comments

Comments
 (0)