Skip to content

Commit 72dbafd

Browse files
committed
Fixed Github Actions integration spec
1 parent 43bbd8a commit 72dbafd

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

integration/progress_test.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package integration_test
22

33
import (
4-
"fmt"
54
"os"
65
"path/filepath"
76
"regexp"
@@ -51,12 +50,11 @@ var _ = Describe("Emitting progress", func() {
5150
Eventually(session).Should(gexec.Exit(0))
5251
})
5352

54-
FIt("allows the user to specify a source-root to find source code files", func() {
53+
It("allows the user to specify a source-root to find source code files", func() {
5554
// first we build the test with -gcflags=all=-trimpath=<PATH TO SPEC> to ensure
5655
// that stack traces do not contain absolute paths
5756
path, err := filepath.Abs(fm.PathTo("progress_reporter"))
5857
Ω(err).ShouldNot(HaveOccurred())
59-
fmt.Println(path)
6058
session := startGinkgo(fm.PathTo("progress_reporter"), "build", `-gcflags=-trimpath=`+path+``)
6159
Eventually(session).Should(gexec.Exit(0))
6260

0 commit comments

Comments
 (0)