Skip to content

Commit

Permalink
add space into CannotCreateMockException message
Browse files Browse the repository at this point in the history
  • Loading branch information
Nakagawa, Tasuku committed Dec 7, 2021
1 parent fb6361f commit 0a1a2ac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ public CannotCreateMockException(Class<?> mockType, Throwable cause) {
}

public CannotCreateMockException(Class<?> mockType, String message, Throwable cause) {
super(String.format("Cannot create mock for %s%s", mockType, message), cause);
super(String.format("Cannot create mock for %s %s", mockType, message), cause);
}
}

0 comments on commit 0a1a2ac

Please sign in to comment.