@@ -14,7 +14,7 @@ def test_menu_join_command_random_uuid():
14
14
assert command .my_name == "Android Phone"
15
15
assert type (command .api_version ) == int
16
16
assert command .platform == ApiPlatform .PYTHON_API
17
- assert command .serial_number == 999999999
17
+ assert command .serial_number == " 999999999"
18
18
19
19
20
20
def test_menu_join_command_fixed_uuid ():
@@ -28,16 +28,16 @@ def test_menu_join_command_fixed_uuid():
28
28
assert command .my_name == "Android Phone"
29
29
assert type (command .api_version ) == int
30
30
assert command .platform == ApiPlatform .PYTHON_API
31
- assert command .serial_number == 999999999
31
+ assert command .serial_number == " 999999999"
32
32
33
33
34
34
def 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" )
36
36
assert isinstance (command .app_uuid , uuid .UUID )
37
37
assert isinstance (command .command_type , MessageField ) is True
38
38
assert command .command_type .id == "NJ"
39
39
40
40
assert command .my_name == "Android Phone"
41
41
assert type (command .api_version ) == int
42
42
assert command .platform == ApiPlatform .PYTHON_API
43
- assert command .serial_number == 55441233
43
+ assert command .serial_number == " 55441233"
0 commit comments