Skip to content

Commit

Permalink
Fix typo in checkArgument message
Browse files Browse the repository at this point in the history
  • Loading branch information
ebyhr authored and electrum committed Jan 23, 2017
1 parent 0f4242c commit d62ec70
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -114,7 +114,7 @@ public static List<Suite> readSuites(File file)
throws IOException
{
requireNonNull(file, "file is null");
checkArgument(file.canRead(), "Can not read file: %s" + file);
checkArgument(file.canRead(), "Cannot read file: %s", file);
byte[] json = Files.readAllBytes(file.toPath());
Map<String, OptionsJson> options = mapJsonCodec(String.class, OptionsJson.class).fromJson(json);
ImmutableList.Builder<Suite> runOptions = ImmutableList.builder();
Expand Down

0 comments on commit d62ec70

Please sign in to comment.