We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23c2e37 commit c7f61efCopy full SHA for c7f61ef
1 file changed
assert_test.go
@@ -94,8 +94,6 @@ func TestSame(t *testing.T) {
94
}
95
96
func TestGreater(t *testing.T) {
97
- t.Parallel()
98
-
99
testGreater(t, 2, 1, true)
100
testGreater(t, 1, 1, false)
101
testGreater(t, 0, 1, false)
@@ -106,8 +104,6 @@ func TestGreater(t *testing.T) {
106
104
107
105
108
func TestGreaterOrEqual(t *testing.T) {
109
110
111
testGreaterOrEqual(t, 2, 1, true)
112
testGreaterOrEqual(t, 1, 1, true)
113
testGreaterOrEqual(t, 0, 1, false)
@@ -117,8 +113,6 @@ func TestGreaterOrEqual(t *testing.T) {
117
118
114
119
115
func TestLess(t *testing.T) {
120
121
122
116
testLess(t, 1, 2, true)
123
testLess(t, 1, 1, false)
124
testLess(t, 2, 1, false)
@@ -129,8 +123,6 @@ func TestLess(t *testing.T) {
129
130
131
125
func TestLessOrEqual(t *testing.T) {
132
133
134
126
testLessOrEqual(t, 1, 2, true)
135
127
testLessOrEqual(t, 1, 1, true)
136
128
testLessOrEqual(t, 2, 1, false)
0 commit comments