Skip to content

Commit 54449d0

Browse files
committed
. t remove parallel when using UseReporter
1 parent e7287ef commit 54449d0

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

approvals_test.go

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ func TestMain(m *testing.M) {
2323
// end-snippet
2424

2525
func TestVerifyStringApproval(t *testing.T) {
26-
t.Parallel()
2726
// begin-snippet: inline_reporter
2827
r := UseReporter(reporters.NewContinuousIntegrationReporter())
2928
defer r.Close()

reporter_test.go

-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ func (s *testReporter) Report(approved, received string) bool {
5151
}
5252

5353
func TestUseReporter(t *testing.T) {
54-
t.Parallel()
5554
front := UseFrontLoadedReporter(newTestReporter(false))
5655
defer front.Close()
5756

@@ -75,7 +74,6 @@ func TestUseReporter(t *testing.T) {
7574
}
7675

7776
func TestFrontLoadedReporter(t *testing.T) {
78-
t.Parallel()
7977
old := getReporter()
8078
front := newTestReporter(false)
8179
next := newTestReporter(true)

0 commit comments

Comments
 (0)