File tree Expand file tree Collapse file tree 5 files changed +7
-9
lines changed
operator-framework/src/test/java/com/github/containersolutions/operator Expand file tree Collapse file tree 5 files changed +7
-9
lines changed Original file line number Diff line number Diff line change 1313 java : [8, 11]
1414 steps :
1515 - uses : actions/checkout@v2
16- - uses : actions/cache@v1
16+ - uses : actions/cache@v2
1717 with :
1818 path : ~/.m2/repository
1919 key : ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Original file line number Diff line number Diff line change @@ -66,9 +66,7 @@ public void eventsAreNotExecutedConcurrentlyForSameResource() throws Interrupted
6666 .matches (list -> eventProcessingList .get (0 ).getCustomResource ().getMetadata ().getResourceVersion ().equals ("1" ) &&
6767 eventProcessingList .get (1 ).getCustomResource ().getMetadata ().getResourceVersion ().equals ("2" ),
6868 "Events processed in correct order" )
69- .matches (list ->
70- eventProcessingList .get (0 ).getEndTime ().isBefore (eventProcessingList .get (1 ).startTime ),
71- "Start time of event 2 is after end time of event 1" );
69+ .matches (list -> eventExecutedBefore (0 , 1 ));
7270 }
7371
7472 @ Test
Original file line number Diff line number Diff line change 5151 <dependency >
5252 <groupId >org.apache.commons</groupId >
5353 <artifactId >commons-lang3</artifactId >
54- <version >3.8.1 </version >
54+ <version >3.10 </version >
5555 </dependency >
5656 <dependency >
5757 <groupId >org.slf4j</groupId >
7272 <dependency >
7373 <groupId >org.mockito</groupId >
7474 <artifactId >mockito-core</artifactId >
75- <version >3.0.0 </version >
75+ <version >3.3.3 </version >
7676 <scope >test</scope >
7777 </dependency >
7878 <dependency >
7979 <groupId >org.springframework</groupId >
8080 <artifactId >spring-core</artifactId >
81- <version >5.2.5 .RELEASE</version >
81+ <version >5.2.7 .RELEASE</version >
8282 <scope >compile</scope >
8383 </dependency >
8484 </dependencies >
Original file line number Diff line number Diff line change 5858 <plugin >
5959 <groupId >com.spotify</groupId >
6060 <artifactId >dockerfile-maven-plugin</artifactId >
61- <version >1.4.12 </version >
61+ <version >1.4.13 </version >
6262 <configuration >
6363 <repository >${docker-registry} /mysql-schema-operator</repository >
6464 <tag >${project.version} </tag >
Original file line number Diff line number Diff line change 5353 <plugin >
5454 <groupId >com.spotify</groupId >
5555 <artifactId >dockerfile-maven-plugin</artifactId >
56- <version >1.4.12 </version >
56+ <version >1.4.13 </version >
5757 <configuration >
5858 <repository >webserver-operator</repository >
5959 <tag >latest</tag >
You can’t perform that action at this time.
0 commit comments