Skip to content

Commit 1406043

Browse files
Fixed test's order
1 parent 18285df commit 1406043

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

compute/cloud-client/src/test/java/compute/reservation/CrudOperationsReservationIT.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public void testCreateReservation()
101101
}
102102

103103
@Test
104-
@Order(2)
104+
@Order(3)
105105
public void testGetReservation()
106106
throws IOException {
107107
Reservation reservation = GetReservation.getReservation(
@@ -112,7 +112,7 @@ public void testGetReservation()
112112
}
113113

114114
@Test
115-
@Order(3)
115+
@Order(4)
116116
public void testListReservation() throws IOException {
117117
List<Reservation> reservations =
118118
ListReservations.listReservations(PROJECT_ID, ZONE);
@@ -122,7 +122,7 @@ public void testListReservation() throws IOException {
122122
}
123123

124124
@Test
125-
@Order(3)
125+
@Order(2)
126126
public void testUpdateVmsForReservation()
127127
throws IOException, ExecutionException, InterruptedException, TimeoutException {
128128
int newNumberOfVms = 5;

0 commit comments

Comments
 (0)