From 0b6f18cbd0c0b8546cc8846026fec1e9d85c8624 Mon Sep 17 00:00:00 2001 From: Andrew Snare Date: Mon, 30 Jun 2025 16:30:11 +0200 Subject: [PATCH] Fix test to use random installation directory properly. --- tests/integration/hive_metastore/test_external_locations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/hive_metastore/test_external_locations.py b/tests/integration/hive_metastore/test_external_locations.py index ec6b346386..cffca95982 100644 --- a/tests/integration/hive_metastore/test_external_locations.py +++ b/tests/integration/hive_metastore/test_external_locations.py @@ -101,6 +101,6 @@ def test_save_external_location_mapping_missing_location(ws, sql_backend, invent tables_crawler = TablesCrawler(sql_backend, inventory_schema) mounts_crawler = MountsCrawler(sql_backend, ws, inventory_schema) location_crawler = ExternalLocations(ws, sql_backend, inventory_schema, tables_crawler, mounts_crawler) - installation = Installation(ws, make_random) + installation = Installation(ws, make_random()) path = location_crawler.save_as_terraform_definitions_on_workspace(installation) assert ws.workspace.get_status(path)