Skip to content

Commit

Permalink
breaking the test to expose the issue with organization settings for …
Browse files Browse the repository at this point in the history
…the person
  • Loading branch information
musketyr committed Dec 8, 2021
1 parent d8b45d5 commit 668852b
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ kordamp {
url = 'http://vladimir.orany.cz'
timezone = 'Europe/Prague'
organization {
name = 'Agorapulse'
url = 'https://agorapulse.com'
name = 'Other Org'
url = 'https://example.com/otherorg'
}
}
}
Expand Down Expand Up @@ -153,6 +153,9 @@ tasks.register('extensionTest') {
assert musketyr.email.get() == '[email protected]'
assert musketyr.url.get() == 'http://vladimir.orany.cz'
assert musketyr.timezone.get() == 'Europe/Prague'
assert musketyr.organization.get().name.get() == 'Other Org'
assert musketyr.organization.get().url.get() == 'https://example.com/otherorg'


def testList = kordamp.info.mailingLists.named('testList').get()
assert testList.subscribe.get() == 'https://example.com/ml/subscribe'
Expand Down

0 comments on commit 668852b

Please sign in to comment.