Skip to content

Commit

Permalink
fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
christianbuon committed Sep 15, 2024
1 parent 86fc24c commit 330065f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ public class VersionHelperTest {
@Test
public void shouldReturnVersion() {
VersionHelper helper = new VersionHelper();
// It will fail when we upgrade to 2.x, but it's stable enough. Better than nothing when running
// It will fail when we upgrade to 3.x, but it's stable enough. Better than nothing when running
// from an IDE, without the version property that we set in Gradle.
assertThat(helper.version(), startsWith("1."));
assertThat(helper.version(), startsWith("2."));
}

@Test
Expand Down

0 comments on commit 330065f

Please sign in to comment.