@@ -50,13 +50,13 @@ def sample_name():
5050
5151@pytest .fixture (scope = "module" )
5252def create_instance_id ():
53- """ Id for the low-cost instance. """
53+ """Id for the low-cost instance."""
5454 return f"create-instance-{ uuid .uuid4 ().hex [:10 ]} "
5555
5656
5757@pytest .fixture (scope = "module" )
5858def lci_instance_id ():
59- """ Id for the low-cost instance. """
59+ """Id for the low-cost instance."""
6060 return f"lci-instance-{ uuid .uuid4 ().hex [:10 ]} "
6161
6262
@@ -91,7 +91,7 @@ def database_ddl():
9191
9292@pytest .fixture (scope = "module" )
9393def default_leader ():
94- """ Default leader for multi-region instances. """
94+ """Default leader for multi-region instances."""
9595 return "us-east4"
9696
9797
@@ -582,7 +582,7 @@ def test_update_data_with_json(capsys, instance_id, sample_database):
582582def test_query_data_with_json_parameter (capsys , instance_id , sample_database ):
583583 snippets .query_data_with_json_parameter (instance_id , sample_database .database_id )
584584 out , _ = capsys .readouterr ()
585- assert "VenueId: 19, VenueDetails: {\" open\" :true, \" rating\" : 9}" in out
585+ assert "VenueId: 19, VenueDetails: {' open': True, ' rating': 9}" in out
586586
587587
588588@pytest .mark .dependency (depends = ["insert_datatypes_data" ])
0 commit comments