Cleanup some issues left over from previous reviews

Bug: 183235980
Test: m nothing
Change-Id: I187765c56b889445de3a4729405ee745e5f73729
This commit is contained in:
Paul Duffin 2021-03-22 19:24:26 +00:00
parent 76e5c8a37f
commit 3cb2c06b44
2 changed files with 3 additions and 2 deletions

View File

@ -138,7 +138,7 @@ import (
// } // }
// //
// func TestJavaStuff(t *testing.T) { // func TestJavaStuff(t *testing.T) {
// result := android.GroupFixturePreparers(t, // result := android.GroupFixturePreparers(
// prepareForJavaTest, // prepareForJavaTest,
// android.FixtureWithRootAndroidBp(`java_library {....}`), // android.FixtureWithRootAndroidBp(`java_library {....}`),
// android.MockFS{...}.AddToFixture(), // android.MockFS{...}.AddToFixture(),

View File

@ -308,7 +308,8 @@ func TestNeverallow(t *testing.T) {
} }
}), }),
test.fs.AddToFixture(), test.fs.AddToFixture(),
).ExtendWithErrorHandler(FixtureExpectsAllErrorsToMatchAPattern(test.expectedErrors)). ).
ExtendWithErrorHandler(FixtureExpectsAllErrorsToMatchAPattern(test.expectedErrors)).
RunTest(t) RunTest(t)
}) })
} }