diff options
Diffstat (limited to 'android/paths_test.go')
-rw-r--r-- | android/paths_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/android/paths_test.go b/android/paths_test.go index 5e618f914..20beecc35 100644 --- a/android/paths_test.go +++ b/android/paths_test.go @@ -1561,7 +1561,7 @@ func TestPathRelativeToTop(t *testing.T) { t.Run("install for soong", func(t *testing.T) { p := PathForModuleInstall(ctx, "install/path") - AssertPathRelativeToTopEquals(t, "install path for soong", "out/soong/target/product/test_device/system/install/path", p) + AssertPathRelativeToTopEquals(t, "install path for soong", "out/target/product/test_device/system/install/path", p) }) t.Run("install for make", func(t *testing.T) { p := PathForModuleInstall(ctx, "install/path") @@ -1584,7 +1584,7 @@ func TestPathRelativeToTop(t *testing.T) { } expected := []string{ - "out/soong/target/product/test_device/system/install/path", + "out/target/product/test_device/system/install/path", "out/soong/output/path", "source/path", } |