8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bcf9b1 commit 5c4426cCopy full SHA for 5c4426c
iot/api-client/end_to_end_example/cloudiot_pubsub_example_server_test.py
@@ -30,7 +30,7 @@
30
31
def test_config_turn_on(capsys):
32
max_temp = 11
33
- data = {b'temperature': max_temp}
+ data = {u'temperature': max_temp}
34
35
Server = example_server.Server(service_account_json)
36
Server._update_device_config(
@@ -48,7 +48,7 @@ def test_config_turn_on(capsys):
48
49
def test_config_turn_off(capsys):
50
min_temp = -1
51
- data = {b'temperature': min_temp}
+ data = {u'temperature': min_temp}
52
53
54
0 commit comments