mirror of https://github.com/stretchr/testify.git
Change Require to Error
parent
f96052c82a
commit
1bbde5e52a
|
@ -580,7 +580,7 @@ func (s *FailfastSuite) TearDownTest() {
|
||||||
|
|
||||||
func (s *FailfastSuite) Test_A_Fails() {
|
func (s *FailfastSuite) Test_A_Fails() {
|
||||||
s.call("Test A Fails")
|
s.call("Test A Fails")
|
||||||
s.Require().True(false)
|
s.T().Error("Test A meant to fail")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *FailfastSuite) Test_B_Passes() {
|
func (s *FailfastSuite) Test_B_Passes() {
|
||||||
|
|
Loading…
Reference in New Issue