Skip to content

Commit c7f61ef

Browse files
committed
Fix tests
1 parent 23c2e37 commit c7f61ef

1 file changed

Lines changed: 0 additions & 8 deletions

File tree

assert_test.go

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,6 @@ func TestSame(t *testing.T) {
9494
}
9595

9696
func TestGreater(t *testing.T) {
97-
t.Parallel()
98-
9997
testGreater(t, 2, 1, true)
10098
testGreater(t, 1, 1, false)
10199
testGreater(t, 0, 1, false)
@@ -106,8 +104,6 @@ func TestGreater(t *testing.T) {
106104
}
107105

108106
func TestGreaterOrEqual(t *testing.T) {
109-
t.Parallel()
110-
111107
testGreaterOrEqual(t, 2, 1, true)
112108
testGreaterOrEqual(t, 1, 1, true)
113109
testGreaterOrEqual(t, 0, 1, false)
@@ -117,8 +113,6 @@ func TestGreaterOrEqual(t *testing.T) {
117113
}
118114

119115
func TestLess(t *testing.T) {
120-
t.Parallel()
121-
122116
testLess(t, 1, 2, true)
123117
testLess(t, 1, 1, false)
124118
testLess(t, 2, 1, false)
@@ -129,8 +123,6 @@ func TestLess(t *testing.T) {
129123
}
130124

131125
func TestLessOrEqual(t *testing.T) {
132-
t.Parallel()
133-
134126
testLessOrEqual(t, 1, 2, true)
135127
testLessOrEqual(t, 1, 1, true)
136128
testLessOrEqual(t, 2, 1, false)

0 commit comments

Comments
 (0)