@@ -166,7 +166,7 @@ func TestGreater(t *testing.T) {
166166 out := & outputT {buf : bytes .NewBuffer (nil )}
167167 False (t , Greater (out , currCase .less , currCase .greater ))
168168 Contains (t , out .buf .String (), currCase .msg )
169- Contains (t , out .helpers , "github.com/wallester /testify/assert.Greater" )
169+ Contains (t , out .helpers , "github.com/stretchr /testify/assert.Greater" )
170170 }
171171}
172172
@@ -210,7 +210,7 @@ func TestGreaterOrEqual(t *testing.T) {
210210 out := & outputT {buf : bytes .NewBuffer (nil )}
211211 False (t , GreaterOrEqual (out , currCase .less , currCase .greater ))
212212 Contains (t , out .buf .String (), currCase .msg )
213- Contains (t , out .helpers , "github.com/wallester /testify/assert.GreaterOrEqual" )
213+ Contains (t , out .helpers , "github.com/stretchr /testify/assert.GreaterOrEqual" )
214214 }
215215}
216216
@@ -254,7 +254,7 @@ func TestLess(t *testing.T) {
254254 out := & outputT {buf : bytes .NewBuffer (nil )}
255255 False (t , Less (out , currCase .greater , currCase .less ))
256256 Contains (t , out .buf .String (), currCase .msg )
257- Contains (t , out .helpers , "github.com/wallester /testify/assert.Less" )
257+ Contains (t , out .helpers , "github.com/stretchr /testify/assert.Less" )
258258 }
259259}
260260
@@ -298,7 +298,7 @@ func TestLessOrEqual(t *testing.T) {
298298 out := & outputT {buf : bytes .NewBuffer (nil )}
299299 False (t , LessOrEqual (out , currCase .greater , currCase .less ))
300300 Contains (t , out .buf .String (), currCase .msg )
301- Contains (t , out .helpers , "github.com/wallester /testify/assert.LessOrEqual" )
301+ Contains (t , out .helpers , "github.com/stretchr /testify/assert.LessOrEqual" )
302302 }
303303}
304304
@@ -337,7 +337,7 @@ func TestPositive(t *testing.T) {
337337 out := & outputT {buf : bytes .NewBuffer (nil )}
338338 False (t , Positive (out , currCase .e ))
339339 Contains (t , out .buf .String (), currCase .msg )
340- Contains (t , out .helpers , "github.com/wallester /testify/assert.Positive" )
340+ Contains (t , out .helpers , "github.com/stretchr /testify/assert.Positive" )
341341 }
342342}
343343
@@ -376,7 +376,7 @@ func TestNegative(t *testing.T) {
376376 out := & outputT {buf : bytes .NewBuffer (nil )}
377377 False (t , Negative (out , currCase .e ))
378378 Contains (t , out .buf .String (), currCase .msg )
379- Contains (t , out .helpers , "github.com/wallester /testify/assert.Negative" )
379+ Contains (t , out .helpers , "github.com/stretchr /testify/assert.Negative" )
380380 }
381381}
382382
0 commit comments