Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
JENKINS-41681, JENKINS-41655
upgraded to use latest version of liquibase (3.5.3).
  • Loading branch information
prospero238 committed Feb 2, 2017
1 parent cc6f605 commit af24390
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -99,7 +99,7 @@
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
<version>3.5.1</version>
<version>3.5.3</version>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
Expand Down
Expand Up @@ -86,8 +86,8 @@ public void should_rollback_using_tag_sucessfully()


assertThat(action.getBuild(), isSuccessful());
int amountOfChangesetsExistingAfterTag = 2;
assertThat(action.getRolledbackChangesets(), hasSize(amountOfChangesetsExistingAfterTag));
int expectedChangesetsToBeRolledBack = 3;
assertThat(action.getRolledbackChangesets(), hasSize(expectedChangesetsToBeRolledBack));
}

@Test
Expand Down

0 comments on commit af24390

Please sign in to comment.