We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1d786e commit 2de8a5aCopy full SHA for 2de8a5a
1 file changed
src/test/java/com/commercetools/sync/shoppinglists/helpers/ShoppingListReferenceResolverTest.java
@@ -241,7 +241,7 @@ void resolveCustomerReference_WithExceptionOnCustomerGroupFetch_ShouldNotResolve
241
.customer(CustomerResourceIdentifierBuilder.of().key("anyKey").build())
242
.description(LocalizedString.of(Locale.ENGLISH, "DESCRIPTION"));
243
244
- final CompletableFuture<Optional<String>> futureThrowingxException = new CompletableFuture<>();
+ final CompletableFuture<Optional<String>> futureThrowingException = new CompletableFuture<>();
245
futureThrowingException.completeExceptionally(ExceptionUtils.createBadGatewayException());
246
when(customerService.fetchCachedCustomerId(anyString())).thenReturn(futureThrowingException);
247
0 commit comments