Skip to content

Commit

Permalink
implement missing test method in vertx-unit mock.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin Duda committed Apr 1, 2019
1 parent 5d81d59 commit fe07cf0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'maven'

project.version = "1.1.2"
project.version = "1.1.3"
project.group = 'com.github.codingchili.chili-core'

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,11 @@ public void fail(Throwable throwable) {

}

@Override
public void fail(int i, Throwable throwable) {

}

@Override
public RoutingContext put(String s, Object o) {
return null;
Expand Down

0 comments on commit fe07cf0

Please sign in to comment.