diff --git a/AutomatedTesting/Gem/PythonTests/Atom/tests/hydra_AtomEditorComponents_GridAdded.py b/AutomatedTesting/Gem/PythonTests/Atom/tests/hydra_AtomEditorComponents_GridAdded.py index c4da2fd71c..31061f1044 100644 --- a/AutomatedTesting/Gem/PythonTests/Atom/tests/hydra_AtomEditorComponents_GridAdded.py +++ b/AutomatedTesting/Gem/PythonTests/Atom/tests/hydra_AtomEditorComponents_GridAdded.py @@ -125,7 +125,7 @@ def AtomEditorComponents_Grid_AddedToEntity(): # 5. Grid Size changed (default is 32, changed to 64) grid_component.set_component_property_value( - AtomComponentProperties.grid('Grid Size'), 64) + AtomComponentProperties.grid('Grid Size'), value=64) current_grid_size = grid_component.get_component_property_value( AtomComponentProperties.grid('Grid Size')) Report.result(Tests.grid_size, current_grid_size == 64) diff --git a/AutomatedTesting/Gem/PythonTests/Atom/tests/hydra_AtomEditorComponents_PhysicalSkyAdded.py b/AutomatedTesting/Gem/PythonTests/Atom/tests/hydra_AtomEditorComponents_PhysicalSkyAdded.py index 1f53a8c850..39dd0d15a5 100644 --- a/AutomatedTesting/Gem/PythonTests/Atom/tests/hydra_AtomEditorComponents_PhysicalSkyAdded.py +++ b/AutomatedTesting/Gem/PythonTests/Atom/tests/hydra_AtomEditorComponents_PhysicalSkyAdded.py @@ -132,7 +132,7 @@ def AtomEditorComponents_PhysicalSky_AddedToEntity(): # 5. Set Sky Intensity to a value of 2 (default value is 4) physical_sky_component.set_component_property_value( - AtomComponentProperties.physical_sky('Sky Intensity'), 2) + AtomComponentProperties.physical_sky('Sky Intensity'), value=2) current_sky_intensity = physical_sky_component.get_component_property_value( AtomComponentProperties.physical_sky('Sky Intensity')) Report.result(Tests.sky_intensity, current_sky_intensity == 2)