Skip to content

Commit d79a7e3

Browse files
Limangalaman93
authored andcommitted
fix incorrect require.Equal arg order in reverse edge test
1 parent d6b8724 commit d79a7e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

worker/mutation_unit_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func TestReverseEdge(t *testing.T) {
5555
pl.RLock()
5656
c := pl.GetLength(5)
5757
pl.RUnlock()
58-
require.Equal(t, c, 0)
58+
require.Equal(t, 0, c)
5959
}
6060

6161
func TestReverseEdgeSetDel(t *testing.T) {

0 commit comments

Comments
 (0)