summaryrefslogtreecommitdiff
path: root/test/framework/fixtures/fixture.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/framework/fixtures/fixture.go')
-rw-r--r--test/framework/fixtures/fixture.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/framework/fixtures/fixture.go b/test/framework/fixtures/fixture.go
index 0693a7ecb..44ad4b132 100644
--- a/test/framework/fixtures/fixture.go
+++ b/test/framework/fixtures/fixture.go
@@ -109,7 +109,6 @@ func (st *synchTest) Error(args ...interface{}) {
st.Lock()
defer st.Unlock()
if !st.dontReportFailures {
- st.dontReportFailures = true
st.t.Error(args...)
}
}
@@ -117,7 +116,6 @@ func (st *synchTest) Errorf(format string, args ...interface{}) {
st.Lock()
defer st.Unlock()
if !st.dontReportFailures {
- st.dontReportFailures = true
st.t.Errorf(format, args...)
}
}
@@ -125,7 +123,6 @@ func (st *synchTest) Fail() {
st.Lock()
defer st.Unlock()
if !st.dontReportFailures {
- st.dontReportFailures = true
st.t.Fail()
}
}