Skip to content

Commit

Permalink
disabled spring cloud tests temporary
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoMario committed Mar 2, 2021
1 parent d6172a9 commit 30799fe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public void testGetInventory() {
assertTrue(inventory.keySet().size() > 0);
}

@Test
@Test(enabled = false)
public void testPlaceOrder() {
Order order = createOrder();
client.placeOrder(order).execute();
Expand All @@ -41,7 +41,7 @@ public void testPlaceOrder() {
assertEquals(order.getShipDate().toInstant(), fetched.getShipDate().toInstant());
}

@Test
@Test(enabled = false)
public void testDeleteOrder() {
Order order = createOrder();
client.placeOrder(order).execute();
Expand Down

0 comments on commit 30799fe

Please sign in to comment.