Skip to content

Commit

Permalink
#130: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jun 14, 2017
1 parent 0809540 commit 178d4fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/cactoos/io/ResourceAsInput.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public ResourceAsInput(final String res, final ClassLoader ldr) {
input -> {
throw new IOException(
new FormattedText(
"Resource '%s' was not found",
"Resource \"%s\" was not found",
input
).asString()
);
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/cactoos/io/ResourceAsInputTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void readsBinaryResource() throws Exception {
Arrays.copyOfRange(
new InputAsBytes(
new ResourceAsInput(
"/org/cactoos/io/ResourceAsInputTest.class"
"org/cactoos/io/ResourceAsInputTest.class"
)
).asBytes(),
// @checkstyle MagicNumber (2 lines)
Expand Down

0 comments on commit 178d4fa

Please sign in to comment.