Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Eclipse Foundation
IT
Websites
membership.eclipse.org
Commits
fd4cf4c4
Commit
fd4cf4c4
authored
Jul 26, 2021
by
Martin Lowe
🇨🇦
Committed by
Martin Lowe
Jul 28, 2021
Browse files
Fix broken test (wgs optional in form completion)
parent
9b47b5a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/test/java/org/eclipsefoundation/react/service/impl/DefaultMailerServiceTest.java
View file @
fd4cf4c4
...
...
@@ -137,9 +137,6 @@ class DefaultMailerServiceTest {
Assertions
.
assertThrows
(
IllegalStateException
.
class
,
()
->
{
mailerService
.
sendToMembershipTeam
(
f
,
org
,
wgs
,
null
);
});
Assertions
.
assertThrows
(
IllegalStateException
.
class
,
()
->
{
mailerService
.
sendToMembershipTeam
(
f
,
org
,
Collections
.
emptyList
(),
contacts
);
});
Assertions
.
assertThrows
(
IllegalStateException
.
class
,
()
->
{
mailerService
.
sendToMembershipTeam
(
f
,
org
,
wgs
,
Collections
.
emptyList
());
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment