Skip to content

Commit

Permalink
fix: fix smoke test to build Java
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartwdouglas committed Sep 30, 2024
1 parent 6275fac commit cd2ed01
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion smoketest/origin/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ require (
google.golang.org/protobuf v1.34.2 // indirect
)

replace github.com/TBD54566975/ftl => /Users/safeer/dev/ftl
replace github.com/TBD54566975/ftl => ../../dev/ftl
2 changes: 1 addition & 1 deletion smoketest/relay/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ require (
google.golang.org/protobuf v1.34.2 // indirect
)

replace github.com/TBD54566975/ftl => /Users/safeer/dev/ftl
replace github.com/TBD54566975/ftl => ../../dev/ftl
4 changes: 3 additions & 1 deletion smoketest/smoketest_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ import (
"testing"
"time"

in "github.com/TBD54566975/ftl/internal/integration"
"github.com/alecthomas/assert/v2"

in "github.com/TBD54566975/ftl/internal/integration"
)

func TestSmokeTest(t *testing.T) {
Expand All @@ -26,6 +27,7 @@ func TestSmokeTest(t *testing.T) {
nonce := randomString(4)

in.Run(t,
in.WithJavaBuild(),
in.WithFTLConfig("../../../ftl-project.toml"),
in.WithTestDataDir("."),
in.CopyModule("origin"),
Expand Down

0 comments on commit cd2ed01

Please sign in to comment.