Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fbarbu15 committed Jan 18, 2024
1 parent 91db651 commit abfe6b2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test_common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
7 changes: 6 additions & 1 deletion tests/filter/test_unsubscribe.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,12 @@ def test_filter_unsubscribe_from_101_content_topics(self):
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:
Expand Down

0 comments on commit abfe6b2

Please sign in to comment.