Skip to content

Commit

Permalink
fix test error
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorrit Poelen committed Jul 26, 2024
1 parent 9534e4b commit faef3fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public StreamingNamespaceConfigHandler(JsonNode jsonNode,

@Override
public void onNamespace(String namespace) throws Exception {
stderr.println("tracking [" + namespace + "]...");
stderr.print("tracking [" + namespace + "]...");
CacheFactory cacheFactory = CmdUtil.createCacheFactory(
namespace,
cacheDir,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public void testPrestonStore() throws IOException, URISyntaxException {
}


@Test(expected = FileNotFoundException.class)
@Test(expected = IOException.class)
public void testMissingFromPrestonStore() throws IOException, URISyntaxException {

Cache cache = new CachePullThroughPrestonStore(
Expand Down

0 comments on commit faef3fc

Please sign in to comment.