Skip to content

Commit 88e2282

Browse files
committedMar 20, 2025·
ignore exit code for symbol test on linux
1 parent 979c969 commit 88e2282

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎integration/_fixtures/symbol_fixture/symbol_fixture_suite_test.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ func TestSymbolFixture(t *testing.T) {
1616

1717
var _ = It("prints out its symbols", func() {
1818
cmd := exec.Command("go", "tool", "nm", "symbol_fixture.test")
19-
output, err := cmd.CombinedOutput()
20-
Expect(err).NotTo(HaveOccurred())
19+
output, _ := cmd.CombinedOutput()
2120
fmt.Println(string(output))
2221
})

0 commit comments

Comments
 (0)
Please sign in to comment.