Skip to content

Commit

Permalink
test(unit/cli): Update SocketDB host/port checks
Browse files Browse the repository at this point in the history
  • Loading branch information
gfieni committed Jun 27, 2024
1 parent c0eadbf commit ce2c777
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/cli/test_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def test_generate_several_pullers_from_config(several_inputs_outputs_stream_conf

elif current_puller_infos['type'] == 'socket':
assert isinstance(db, SocketDB)
assert db.port == current_puller_infos['port']
assert db.server_address == (current_puller_infos['host'], current_puller_infos['port'])

else:
assert False
Expand Down

0 comments on commit ce2c777

Please sign in to comment.