From bd457156c08ed097fe565d23c3f5870b5551a526 Mon Sep 17 00:00:00 2001 From: "Gareth J. Greenaway" Date: Mon, 2 Oct 2023 16:23:23 -0700 Subject: [PATCH] Update test to use the correct key. --- tests/pytests/integration/states/test_include.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/pytests/integration/states/test_include.py b/tests/pytests/integration/states/test_include.py index 6ee3df25078..d4cc13c5b6f 100644 --- a/tests/pytests/integration/states/test_include.py +++ b/tests/pytests/integration/states/test_include.py @@ -78,7 +78,9 @@ include: ret = salt_call_cli.run("state.show_low_sls", "includetest") assert "__sls_included_from__" in ret.data[0] - assert "includetest.only-include" in ret.data[0]["__included_from__"] + assert ( + "includetest.only-include" in ret.data[0]["__sls_included_from__"] + ) @pytest.mark.slow_test