Skip to content

Commit

Permalink
Update test to use the correct key.
Browse files Browse the repository at this point in the history
  • Loading branch information
garethgreenaway committed Oct 2, 2023
1 parent 27f6fb4 commit bd45715
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/pytests/integration/states/test_include.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ def test_issue_65080(salt_master, salt_minion, salt_call_cli):

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
Expand Down

0 comments on commit bd45715

Please sign in to comment.