From d535b8af930641292ec20c80de7661f0f02ef467 Mon Sep 17 00:00:00 2001 From: Rinat Minibaev <132935507+rinatmini@users.noreply.github.com> Date: Fri, 4 Aug 2023 18:25:33 -0700 Subject: [PATCH] Fixed typo in CHANGELOG + dummy change in test to trigger CI pipeline --- sdk/spring/azure-spring-data-cosmos/CHANGELOG.md | 2 +- .../java/com/azure/spring/data/cosmos/common/TestConstants.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/spring/azure-spring-data-cosmos/CHANGELOG.md b/sdk/spring/azure-spring-data-cosmos/CHANGELOG.md index ffb04336d322..b104692e3293 100644 --- a/sdk/spring/azure-spring-data-cosmos/CHANGELOG.md +++ b/sdk/spring/azure-spring-data-cosmos/CHANGELOG.md @@ -7,7 +7,7 @@ #### Breaking Changes #### Bugs Fixed -* Fixed when IN statement in annotated query didn't work with Long values - See [PR 36249](https://github.com/Azure/azure-sdk-for-java/pull/36249). +* Fixed an issue with IN statement in annotated queries not working for `Long` data type - See [PR 36249](https://github.com/Azure/azure-sdk-for-java/pull/36249). #### Other Changes diff --git a/sdk/spring/azure-spring-data-cosmos/src/test/java/com/azure/spring/data/cosmos/common/TestConstants.java b/sdk/spring/azure-spring-data-cosmos/src/test/java/com/azure/spring/data/cosmos/common/TestConstants.java index 3a96dab6c8df..6fe4c113d5c1 100644 --- a/sdk/spring/azure-spring-data-cosmos/src/test/java/com/azure/spring/data/cosmos/common/TestConstants.java +++ b/sdk/spring/azure-spring-data-cosmos/src/test/java/com/azure/spring/data/cosmos/common/TestConstants.java @@ -141,7 +141,7 @@ public final class TestConstants { public static final Integer HOME_NUMBER_1 = 1; public static final Integer HOME_NUMBER_2 = 99; - public static final Integer HOME_NUMBER_3 = 4444; + public static final Integer HOME_NUMBER_3 = 4445; public static final LocalDate REGISTRATION_TIME_1D_AGO = LocalDate.now().minusDays(1); public static final LocalDate REGISTRATION_TIME_1W_AGO = LocalDate.now().minusDays(7);