Skip to content

Commit

Permalink
Automatic code cleanup.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 634808649
  • Loading branch information
java-team-github-bot authored and Error Prone Team committed May 17, 2024
1 parent 0101da4 commit 341ac4b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
<!-- Apache 2.0 -->
<groupId>com.google.testparameterinjector</groupId>
<artifactId>test-parameter-injector</artifactId>
<version>1.15</version>
<version>1.16</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ public void testJUnitTestMethod() {
"ExampleWithTestParametersTest.java",
"import com.google.common.collect.ImmutableList;",
"import com.google.testing.junit.testparameterinjector.TestParameters;",
"import com.google.testing.junit.testparameterinjector.TestParametersValuesProvider;",
"import org.junit.Test;",
"public class ExampleWithTestParametersTest {",
" @Test",
Expand All @@ -164,9 +165,10 @@ public void testJUnitTestMethod() {
" String l)",
" throws Exception {",
" }",
" static class TestArgs implements TestParameters.TestParametersValuesProvider {",
" static class TestArgs extends TestParametersValuesProvider {",
" @Override",
" public ImmutableList<TestParameters.TestParametersValues> provideValues() {",
" public ImmutableList<TestParameters.TestParametersValues> provideValues(",
" Context context) {",
" return ImmutableList.of();",
" }",
" }",
Expand Down

0 comments on commit 341ac4b

Please sign in to comment.