Skip to content

Commit

Permalink
fix : minor bug in function_test.py fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Aug 10, 2024
1 parent 568eb00 commit 61b3cc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/function_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
>>> sys_platform = sys.platform
>>> if sys_platform == "win32":
... sound_id = nava.play(os.path.join("others", "test.wav"), async_mode=True, engine=nava.Engine.WINSOUND)
>>> elif sys_platform == "darwin":
... elif sys_platform == "darwin":
... sound_id = nava.play(os.path.join("others", "test.wav"), async_mode=True, engine=nava.Engine.AFPLAY)
>>> else:
... else:
... sound_id = nava.play(os.path.join("others", "test.wav"), async_mode=True, engine=nava.Engine.ALSA)
>>> nava.functions.play_cli(os.path.join("others", "test.wav"))
>>> nava.functions.nava_help()
Expand Down

0 comments on commit 61b3cc3

Please sign in to comment.