@@ -14,7 +14,7 @@ def test_menu_join_command_random_uuid():
1414 assert command .my_name == "Android Phone"
1515 assert type (command .api_version ) == int
1616 assert command .platform == ApiPlatform .PYTHON_API
17- assert command .serial_number == 999999999
17+ assert command .serial_number == " 999999999"
1818
1919
2020def test_menu_join_command_fixed_uuid ():
@@ -28,16 +28,16 @@ def test_menu_join_command_fixed_uuid():
2828 assert command .my_name == "Android Phone"
2929 assert type (command .api_version ) == int
3030 assert command .platform == ApiPlatform .PYTHON_API
31- assert command .serial_number == 999999999
31+ assert command .serial_number == " 999999999"
3232
3333
3434def test_menu_join_command_custom_serial_number ():
35- command = CommandFactory .new_join_command (name = "Android Phone" , serial_number = 55441233 )
35+ command = CommandFactory .new_join_command (name = "Android Phone" , serial_number = " 55441233" )
3636 assert isinstance (command .app_uuid , uuid .UUID )
3737 assert isinstance (command .command_type , MessageField ) is True
3838 assert command .command_type .id == "NJ"
3939
4040 assert command .my_name == "Android Phone"
4141 assert type (command .api_version ) == int
4242 assert command .platform == ApiPlatform .PYTHON_API
43- assert command .serial_number == 55441233
43+ assert command .serial_number == " 55441233"
0 commit comments