From 157149928b3d10c1f6e12cf31467ce67d6942902 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Tue, 1 Feb 2022 11:24:51 -0800 Subject: [PATCH] lower casing materials in path to avoid Linux casing issues Signed-off-by: Scott Murray --- .../Atom/tests/hydra_AtomEditorComponents_DecalAdded.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AutomatedTesting/Gem/PythonTests/Atom/tests/hydra_AtomEditorComponents_DecalAdded.py b/AutomatedTesting/Gem/PythonTests/Atom/tests/hydra_AtomEditorComponents_DecalAdded.py index 6136e1021b..cb43382e14 100644 --- a/AutomatedTesting/Gem/PythonTests/Atom/tests/hydra_AtomEditorComponents_DecalAdded.py +++ b/AutomatedTesting/Gem/PythonTests/Atom/tests/hydra_AtomEditorComponents_DecalAdded.py @@ -147,7 +147,7 @@ def AtomEditorComponents_Decal_AddedToEntity(): Report.result(Tests.creation_redo, decal_entity.exists()) # 5. Set Material property on Decal component. - decal_material_asset_path = os.path.join("Materials", "decal", "airship_symbol_decal.azmaterial") + decal_material_asset_path = os.path.join("materials", "decal", "airship_symbol_decal.azmaterial") decal_material_asset = Asset.find_asset_by_path(decal_material_asset_path, False) decal_component.set_component_property_value(AtomComponentProperties.decal('Material'), decal_material_asset.id) get_material_property = decal_component.get_component_property_value(AtomComponentProperties.decal('Material'))