Skip to content

Commit d506f83

Browse files
committed
Revert "test for device name not being NULL": this doesn't work in the CI pipeline.
This reverts commit 689ab76.
1 parent 689ab76 commit d506f83

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/test_miniaudio.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,8 @@ def dummy_generator():
99

1010
def test_devices():
1111
devs = miniaudio.Devices()
12-
# devs.get_playbacks()
13-
# devs.get_captures()
14-
assert( not (devs.get_playbacks()[0]["name"].startswith("NULL") ) and
15-
not (devs.get_captures()[0]["name"].startswith("NULL")))
12+
devs.get_playbacks()
13+
devs.get_captures()
1614

1715

1816
# The device stop callback doesn't work consistently,

0 commit comments

Comments
 (0)