This is an automated email from the ASF dual-hosted git repository.
danhaywood pushed a commit to branch ISIS-3002
in repository https://gitbox.apache.org/repos/asf/isis.git
The following commit(s) were added to refs/heads/ISIS-3002 by this push:
new 11bde435de ISIS-3002: fixes integ test
11bde435de is described below
commit 11bde435de86d43efd26d9800033d23786bdbc33
Author: Dan Haywood <[email protected]>
AuthorDate: Sun Jul 31 13:15:40 2022 +0100
ISIS-3002: fixes integ test
---
.../commandlog/applib/integtest/CommandLog_IntegTestAbstract.java | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git
a/extensions/core/commandlog/applib/src/test/java/org/apache/isis/extensions/commandlog/applib/integtest/CommandLog_IntegTestAbstract.java
b/extensions/core/commandlog/applib/src/test/java/org/apache/isis/extensions/commandlog/applib/integtest/CommandLog_IntegTestAbstract.java
index 807b95b3ae..f52b1991b6 100644
---
a/extensions/core/commandlog/applib/src/test/java/org/apache/isis/extensions/commandlog/applib/integtest/CommandLog_IntegTestAbstract.java
+++
b/extensions/core/commandlog/applib/src/test/java/org/apache/isis/extensions/commandlog/applib/integtest/CommandLog_IntegTestAbstract.java
@@ -252,8 +252,7 @@ public abstract class CommandLog_IntegTestAbstract extends
IsisIntegrationTestAb
assertThat(cleBookmarkIfAny).isPresent();
Bookmark cleBookmark = cleBookmarkIfAny.get();
String identifier = cleBookmark.getIdentifier();
- assertThat(identifier).startsWith("u_");
- UUID.fromString(identifier.substring(2)); // should not fail, ie check
the format is as we expect
+ UUID.fromString(identifier); // should not fail, ie check the format
is as we expect
// when we start a new session and lookup from the bookmark
interactionService.nextInteraction();