This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit c88a8478 authored by Michael Breu's avatar Michael Breu :speech_balloon:
Browse files

Merge branch '480-sharing-errorneous-notpresent-attribute-in-gitprojectdto' into 'development'

Resolve "Sharing: errorneous notPresent attribute in GitProjectDTO"

See merge request !233
parents cd5e2b23 4e73b564
Branches
2 merge requests!235Bringing some minor issues and bug fixes to production,!233Resolve "Sharing: errorneous notPresent attribute in GitProjectDTO"
......@@ -158,7 +158,7 @@
<dependency>
<groupId>org.codeability.sharing</groupId>
<artifactId>SharingPluginPlatformAPI</artifactId>
<version>0.4.12</version>
<version>0.4.13</version>
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
......
......@@ -39,6 +39,10 @@ class MessageServiceIT {
.filter(m -> m.getEnds_at().before(end2023.getTime()))
.collect(Collectors.toList());
MatcherAssert.assertThat("This may fail, if there are no old messages in gitlab", preparedTestMessages, Matchers.hasSize(2));
MatcherAssert.assertThat(
"This may fail, if there are changed old messages in gitlab",
preparedTestMessages.size(),
Matchers.greaterThanOrEqualTo(1)
);
}
}
......@@ -108,7 +108,6 @@ class VariousDTOTest {
"main_group",
"sub_group",
"url",
"notPresent",
"last_activity_at",
"visibility",
"users",
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment