diff --git a/plugins/gcp/test/test_filestore.py b/plugins/gcp/test/test_filestore.py index 355b8c5c34..394cab86f8 100644 --- a/plugins/gcp/test/test_filestore.py +++ b/plugins/gcp/test/test_filestore.py @@ -9,21 +9,21 @@ def test_gcp_filestore_backup(random_builder: GraphBuilder) -> None: with open(os.path.dirname(__file__) + "/files/filestore_backup.json") as f: GcpFilestoreBackup.collect(raw=json.load(f)["backups"], builder=random_builder) - functions = random_builder.nodes(clazz=GcpFilestoreBackup) - assert len(functions) == 1 + backups = random_builder.nodes(clazz=GcpFilestoreBackup) + assert len(backups) == 1 def test_gcp_filestore_instance(random_builder: GraphBuilder) -> None: with open(os.path.dirname(__file__) + "/files/filestore_instance.json") as f: GcpFilestoreInstance.collect(raw=json.load(f)["instances"], builder=random_builder) - functions = random_builder.nodes(clazz=GcpFilestoreInstance) - assert len(functions) == 1 + instances = random_builder.nodes(clazz=GcpFilestoreInstance) + assert len(instances) == 1 def test_gcp_filestore_instance_snapshot(random_builder: GraphBuilder) -> None: with open(os.path.dirname(__file__) + "/files/filestore_instance_snapshot.json") as f: GcpFilestoreInstanceSnapshot.collect(raw=json.load(f)["snapshots"], builder=random_builder) - functions = random_builder.nodes(clazz=GcpFilestoreInstanceSnapshot) - assert len(functions) == 1 + snapshots = random_builder.nodes(clazz=GcpFilestoreInstanceSnapshot) + assert len(snapshots) == 1