Skip to content

Commit

Permalink
Fix breakage caused by mid-air collision between b237b02 and c39fb00.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 330598714
  • Loading branch information
janakdr authored and Copybara-Service committed Sep 8, 2020
1 parent 8269442 commit 943d19f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import static org.junit.Assert.assertThrows;

import com.google.devtools.build.lib.util.io.FileOutErr.FileRecordingOutputStream;
import com.google.devtools.build.lib.vfs.DigestHashFunction;
import com.google.devtools.build.lib.vfs.FileSystem;
import com.google.devtools.build.lib.vfs.Path;
import com.google.devtools.build.lib.vfs.inmemoryfs.InMemoryFileSystem;
Expand All @@ -37,7 +38,7 @@ public class FileOutErrTest {

@Before
public void setUp() {
fs = new InMemoryFileSystem();
fs = new InMemoryFileSystem(DigestHashFunction.SHA256);
}

private FileRecordingOutputStream newFileRecordingOutputStream(String path) {
Expand Down

0 comments on commit 943d19f

Please sign in to comment.