Skip to content

Commit

Permalink
Changed 1.3.19 to closed (#71)
Browse files Browse the repository at this point in the history
Signed-off-by: Brandon Shien <[email protected]>
  • Loading branch information
bshien committed Sep 6, 2024
1 parent 6b5c6bb commit 9c887d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public enum ReleaseInputs {
VERSION_1_3_16("1.3.16", "closed", "1.3", false),
VERSION_1_3_17("1.3.17", "closed", "1.3", false),
VERSION_1_3_18("1.3.18", "closed", "1.3", true),
VERSION_1_3_19("1.3.19", "open", "1.3", true);
VERSION_1_3_19("1.3.19", "closed", "1.3", true);

private final String version;
private final String state;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void testGetState() {
assertEquals("closed", ReleaseInputs.VERSION_1_3_16.getState());
assertEquals("closed", ReleaseInputs.VERSION_1_3_17.getState());
assertEquals("closed", ReleaseInputs.VERSION_1_3_18.getState());
assertEquals("open", ReleaseInputs.VERSION_1_3_19.getState());
assertEquals("closed", ReleaseInputs.VERSION_1_3_19.getState());
}

@Test
Expand Down

0 comments on commit 9c887d2

Please sign in to comment.