Skip to content

Commit

Permalink
update unit tests to work with new queue names as per #33
Browse files Browse the repository at this point in the history
  • Loading branch information
petersilva committed Jul 17, 2024
1 parent bf64864 commit 54fc84f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/sarracenia/config_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ def test_broker_finalize():
assert( hasattr( options, 'queue_filename' ) )
assert( hasattr( options, 'queueName' ) )
assert( type(options.queueName) == str )
assert( options.queueName.startswith('q_bunnypeer_subscribe.ex1') )
assert( options.queueName.startswith('q_bunnypeer.subscribe.ex1') )
assert( options.directory == os.path.expanduser( '~/ex1' ) )
assert( len(options.bindings) == 1 )
assert( options.exchange == 'xs_bunnypeer' )
Expand Down

0 comments on commit 54fc84f

Please sign in to comment.