mirror of
https://github.com/logos-messaging/logos-messaging-interop-tests.git
synced 2026-01-11 02:13:07 +00:00
small fix
This commit is contained in:
parent
91db651229
commit
abfe6b2f65
3
.github/workflows/test_common.yml
vendored
3
.github/workflows/test_common.yml
vendored
@ -73,7 +73,8 @@ jobs:
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
publish_branch: gh-pages
|
||||
publish_dir: ${{ env.CALLER }}/allure-history
|
||||
publish_dir: allure-history
|
||||
destination_dir: ${{ env.CALLER }}
|
||||
|
||||
- name: Create job summary
|
||||
if: always()
|
||||
|
||||
@ -68,7 +68,12 @@ class TestFilterUnSubscribe(StepsFilter):
|
||||
self.delete_filter_subscription({"requestId": "1", "contentFilters": _101_content_topics, "pubsubTopic": self.test_pubsub_topic})
|
||||
raise AssertionError("Unsubscribe from more than 100 content topics worked!!!")
|
||||
except Exception as ex:
|
||||
assert "exceeds maximum content topics: 100" in str(ex)
|
||||
if self.node2.is_nwaku():
|
||||
assert "exceeds maximum content topics: 100" in str(ex)
|
||||
elif self.node2.is_gowaku():
|
||||
assert "Bad Request" in str(ex)
|
||||
else:
|
||||
raise NotImplementedError("Not implemented for this node type")
|
||||
|
||||
def test_filter_unsubscribe_with_no_content_topic(self):
|
||||
try:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user