Skip to content

Commit

Permalink
fix : function_test.py updated
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Mar 26, 2024
1 parent b7a8680 commit ab707e4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/function_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@
>>> sound_id_3 = nava.play(os.path.join("others", "test.wav"), async_mode=True)
>>> sound_id_3 == 1003
True
>>> sound_id_4 = nava.play(os.path.join("others", "test.wav"), async_mode=True, loop=True)
>>> sound_id_4 == 1004
True
>>> nava.stop(sound_id_1)
>>> nava.stop(sound_id_4)
>>> for i in range(40):
... sound_id = nava.play(os.path.join("others", "test.wav"), async_mode=True)
... time.sleep(0.2)
Expand Down

0 comments on commit ab707e4

Please sign in to comment.