Skip to content

Commit a2338de

Browse files
authored
tests: use Eq intead of EqOp (#4)
1 parent 4402f70 commit a2338de

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

urlpath_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ func Test_Parse(t *testing.T) {
2929
})
3030

3131
must.NoError(t, err)
32-
must.EqOp(t, "blah", foo)
33-
must.EqOp(t, 31, bar)
32+
must.Eq(t, "blah", foo)
33+
must.Eq(t, 31, bar)
3434
executed = true
3535
})
3636

@@ -60,8 +60,8 @@ func Test_ParseValues(t *testing.T) {
6060
})
6161

6262
must.NoError(t, err)
63-
must.EqOp(t, "blah", foo)
64-
must.EqOp(t, 21, bar)
63+
must.Eq(t, "blah", foo)
64+
must.Eq(t, 21, bar)
6565
}
6666

6767
func Test_ParseValues_incompatible(t *testing.T) {

0 commit comments

Comments
 (0)