Skip to content

Commit bd23f96

Browse files
[MERGE] Merged and resolved PR #439
2 parents 794f02f + 9f69369 commit bd23f96

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

multicast/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ def cli() -> int:
796796
A: Test that the call to the `cli` function returns an int 0-3.
797797
798798
>>> tst_argv_args = ['''SAY''', '''--port=1234''', '''--message''', '''is required''']
799-
>>> sys.argv = tst_argv_args # normally arguments are aoutomaticly already in argv
799+
>>> sys.argv = tst_argv_args # normally arguments are automatically already in argv
800800
>>> test_code = multicast.__main__.cli()
801801
>>> test_code is not None
802802
True

tests/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1086,7 +1086,7 @@ def _should_get_package_version_WHEN_valid(self) -> None:
10861086
10871087
"""
10881088
try:
1089-
self.assertIsNotNone(multicast.__module__, "Version will be efectivly None.")
1089+
self.assertIsNotNone(multicast.__module__, "Version will be effectively None.")
10901090
self.assertIsNotNone(multicast.__version__, "Version is not valid.")
10911091
_raw_version_fixture = multicast.__version__
10921092
self.assertIsInstance(_raw_version_fixture, str, "Version is not a string.")

0 commit comments

Comments
 (0)