small fix

This commit is contained in:
Florin Barbu 2024-01-18 18:56:55 +02:00
parent 91db651229
commit abfe6b2f65
No known key found for this signature in database
GPG Key ID: 593D6DBC6D9E5095
2 changed files with 8 additions and 2 deletions

View File

@ -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()

View File

@ -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: