diff options
Diffstat (limited to 'android/mutator_test.go')
-rw-r--r-- | android/mutator_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/mutator_test.go b/android/mutator_test.go index 60a61199f..f421b82f1 100644 --- a/android/mutator_test.go +++ b/android/mutator_test.go @@ -78,7 +78,7 @@ func TestMutatorAddMissingDependencies(t *testing.T) { FixtureWithRootAndroidBp(bp), ).RunTest(t) - foo := result.ModuleForTests("foo", "").Module().(*mutatorTestModule) + foo := result.ModuleForTests(t, "foo", "").Module().(*mutatorTestModule) AssertDeepEquals(t, "foo missing deps", []string{"added_missing_dep", "regular_missing_dep"}, foo.missingDeps) } |