Skip to content

Commit 2de8a5a

Browse files
author
salander85
committed
Fix variable name
1 parent f1d786e commit 2de8a5a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/com/commercetools/sync/shoppinglists/helpers/ShoppingListReferenceResolverTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ void resolveCustomerReference_WithExceptionOnCustomerGroupFetch_ShouldNotResolve
241241
.customer(CustomerResourceIdentifierBuilder.of().key("anyKey").build())
242242
.description(LocalizedString.of(Locale.ENGLISH, "DESCRIPTION"));
243243

244-
final CompletableFuture<Optional<String>> futureThrowingxException = new CompletableFuture<>();
244+
final CompletableFuture<Optional<String>> futureThrowingException = new CompletableFuture<>();
245245
futureThrowingException.completeExceptionally(ExceptionUtils.createBadGatewayException());
246246
when(customerService.fetchCachedCustomerId(anyString())).thenReturn(futureThrowingException);
247247

0 commit comments

Comments
 (0)