Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions shippable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ language: java

jdk:
- openjdk7
- oraclejdk7
- openjdk6
#- oraclejdk7
#- openjdk6

after_success:
- mvn clean cobertura:cobertura
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/TestApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public void testInsertAndGetData() {
App app = new App();
result = app.getData();
} finally {
assertEquals("Hope this works!", result);
assertEquals("Hope this test works ?!", result);
}
}
}
Expand Down