Skip to content

Commit f97f8ce

Browse files
author
Radislav Berkovich
committed
tech : fix tests
1 parent fe898e5 commit f97f8ce

File tree

1 file changed

+2
-1
lines changed
  • src/test/java/com/microfocus/application/automation/tools/octane

1 file changed

+2
-1
lines changed

src/test/java/com/microfocus/application/automation/tools/octane/EnumsTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,14 @@ public void testCIEventCauseType() {
5353

5454
@Test
5555
public void testCIEventType() {
56-
assertEquals(CIEventType.values().length, 6);
56+
assertEquals(CIEventType.values().length, 7);
5757
assertEquals(CIEventType.QUEUED.value(), "queued");
5858
assertEquals(CIEventType.SCM.value(), "scm");
5959
assertEquals(CIEventType.STARTED.value(), "started");
6060
assertEquals(CIEventType.FINISHED.value(), "finished");
6161
assertEquals(CIEventType.fromValue("queued"), CIEventType.QUEUED);
6262
assertEquals(CIEventType.DELETED.value(),"deleted" );
63+
assertEquals(CIEventType.RENAMED.value(),"renamed" );
6364
}
6465

6566
@Test

0 commit comments

Comments
 (0)