Skip to content

Commit

Permalink
fixup! DataflowPipelineOptions: use FileSystems, not IOChannelUtils, …
Browse files Browse the repository at this point in the history
…to resolve staging location
  • Loading branch information
dhalperi committed May 4, 2017
1 parent 0c0696e commit 2f312f8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public List<GcsPath> answer(InvocationOnMock invocation) throws Throwable {
}
});
when(mockGcsUtil.bucketAccessible(GcsPath.fromUri(VALID_STAGING_BUCKET))).thenReturn(true);
when(mockGcsUtil.bucketAccessible(GcsPath.fromUri(VALID_STAGING_BUCKET + '/'))).thenReturn(true);
when(mockGcsUtil.bucketAccessible(GcsPath.fromUri(VALID_STAGING_BUCKET))).thenReturn(true);
when(mockGcsUtil.bucketAccessible(GcsPath.fromUri(VALID_TEMP_BUCKET))).thenReturn(true);
when(mockGcsUtil.bucketAccessible(GcsPath.fromUri(VALID_TEMP_BUCKET + "/staging/"))).
thenReturn(true);
Expand Down

0 comments on commit 2f312f8

Please sign in to comment.