@@ -383,9 +383,9 @@ def test_sequential_ids(self):
383383 self .assertEqual (set (after ) - set (before ), {id1 , id2 , id3 })
384384
385385 def test_channel_list_all_closed (self ):
386- id1 = _channels .create ()
387- id2 = _channels .create ()
388- id3 = _channels .create ()
386+ id1 = _channels .create (REPLACE )
387+ id2 = _channels .create (REPLACE )
388+ id3 = _channels .create (REPLACE )
389389 before = _channels .list_all ()
390390 expected = [info for info in before if info [0 ] != id2 ]
391391 _channels .close (id2 , force = True )
@@ -394,9 +394,9 @@ def test_channel_list_all_closed(self):
394394 self .assertEqual (len (after ), len (before ) - 1 )
395395
396396 def test_channel_list_all_destroyed (self ):
397- id1 = _channels .create ()
398- id2 = _channels .create ()
399- id3 = _channels .create ()
397+ id1 = _channels .create (REPLACE )
398+ id2 = _channels .create (REPLACE )
399+ id3 = _channels .create (REPLACE )
400400 before = _channels .list_all ()
401401 expected = [info for info in before if info [0 ] != id2 ]
402402 _channels .destroy (id2 )
@@ -405,9 +405,9 @@ def test_channel_list_all_destroyed(self):
405405 self .assertEqual (len (after ), len (before ) - 1 )
406406
407407 def test_channel_list_all_released (self ):
408- id1 = _channels .create ()
409- id2 = _channels .create ()
410- id3 = _channels .create ()
408+ id1 = _channels .create (REPLACE )
409+ id2 = _channels .create (REPLACE )
410+ id3 = _channels .create (REPLACE )
411411 before = _channels .list_all ()
412412 _channels .release (id2 , send = True , recv = True )
413413 after = _channels .list_all ()
0 commit comments