This is an automated email from the ASF dual-hosted git repository. shuber pushed a commit to branch unomi-1.5.x in repository https://gitbox.apache.org/repos/asf/unomi.git
commit 456091cb9f851addae205e0d09af99b64c0690af Author: Serge Huber <[email protected]> AuthorDate: Tue Jul 21 16:12:01 2020 +0200 Fix unit test by not re-using event IDs (cherry picked from commit 7c8144a589df75487512b1c920ad3ba145ff9b18) --- itests/src/test/java/org/apache/unomi/itests/ContextServletIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/itests/src/test/java/org/apache/unomi/itests/ContextServletIT.java b/itests/src/test/java/org/apache/unomi/itests/ContextServletIT.java index 0587a21..d4cfd63 100644 --- a/itests/src/test/java/org/apache/unomi/itests/ContextServletIT.java +++ b/itests/src/test/java/org/apache/unomi/itests/ContextServletIT.java @@ -323,7 +323,7 @@ public class ContextServletIT extends BaseIT { @Test public void testCreateEventWithProfileId_Success() throws IOException, InterruptedException { //Arrange - String eventId = "test-event-id1"; + String eventId = "test-event-id4"; String profileId = "test-profile-id"; String eventType = "test-event-type"; Event event = new Event();
