Skip to content

Commit

Permalink
Merge branch 'develop' into feature/e2e-test
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed Aug 14, 2024
2 parents 3329b73 + 11baa37 commit 5f43285
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/examples-e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ jobs:
working-directory: ./examples
timeout-minutes: 20
env:
# Python を強制的に UTF-8 で利用するおまじない
PYTHONUTF8: 1
TEST_SIGNALING_URLS: ${{ secrets.TEST_SIGNALING_URLS }}
TEST_CHANNEL_ID_PREFIX: ${{ secrets.TEST_CHANNEL_ID_PREFIX }}
TEST_SECRET_KEY: ${{ secrets.TEST_SECRET_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion examples/tests/test_messaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def test_messaging(setup):
assert messaging_recvonly.switched

message1 = "spam".encode("utf-8")
message2 = "ham".encode("utf-8")
message2 = "はむ".encode("utf-8")

messaging_sendonly.send(message1)
messaging_sendonly.send(message2)
Expand Down

0 comments on commit 5f43285

Please sign in to comment.