Skip to content

Commit

Permalink
Automatic code cleanup.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 606165929
Change-Id: Ib4297b10644f21682a0c0204d02296bfb1b76480
  • Loading branch information
Googler authored and copybara-github committed Feb 12, 2024
1 parent eae0528 commit 65b1a69
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
import com.google.devtools.build.lib.unix.NativePosixFiles;
import com.google.devtools.build.lib.util.Fingerprint;
import com.google.testing.junit.testparameterinjector.TestParameter;
import com.google.testing.junit.testparameterinjector.TestParameter.TestParameterValuesProvider;
import com.google.testing.junit.testparameterinjector.TestParameterInjector;
import com.google.testing.junit.testparameterinjector.TestParameterValuesProvider;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
Expand Down Expand Up @@ -74,9 +74,9 @@ public abstract class FileSystemTest {
@TestParameter(valuesProvider = DigestHashFunctionsProvider.class)
public DigestHashFunction digestHashFunction;

private static final class DigestHashFunctionsProvider implements TestParameterValuesProvider {
private static final class DigestHashFunctionsProvider extends TestParameterValuesProvider {
@Override
public ImmutableList<?> provideValues() {
public ImmutableList<?> provideValues(Context context) {
return DigestHashFunction.getPossibleHashFunctions().asList();
}
}
Expand Down

0 comments on commit 65b1a69

Please sign in to comment.