diff options
Diffstat (limited to 'tools/rbcrun/host_test.go')
| -rw-r--r-- | tools/rbcrun/host_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/rbcrun/host_test.go b/tools/rbcrun/host_test.go index 7cfeb14463..38b292376a 100644 --- a/tools/rbcrun/host_test.go +++ b/tools/rbcrun/host_test.go @@ -143,7 +143,7 @@ func TestBzlLoadsScl(t *testing.T) { if err := os.Chdir(filepath.Dir(dir)); err != nil { t.Fatal(err) } - vars, _, err := Run("testdata/bzl_loads_scl.bzl", nil, ExecutionModeScl, false) + vars, _, err := Run("testdata/bzl_loads_scl.bzl", nil, ExecutionModeRbc, false) if err != nil { t.Fatal(err) } @@ -160,7 +160,7 @@ func TestNonEntrypointBzlLoadsScl(t *testing.T) { if err := os.Chdir(filepath.Dir(dir)); err != nil { t.Fatal(err) } - vars, _, err := Run("testdata/bzl_loads_scl_2.bzl", nil, ExecutionModeScl, false) + vars, _, err := Run("testdata/bzl_loads_scl_2.bzl", nil, ExecutionModeRbc, false) if err != nil { t.Fatal(err) } |