Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
disrupted committed Oct 11, 2023
1 parent 42b11ff commit ef7169d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/utils/test_environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def test_update_os_environ(environment: Environment):


def test_mapping():
environment = Environment(**{"kwarg1": "value1", "kwarg2": "value2"})
environment = Environment({"kwarg1": "value1", "kwarg2": "value2"})
assert environment["MY"] == "fake"
assert environment["ENVIRONMENT"] == "here"
assert environment["kwarg1"] == "value1"
Expand All @@ -66,7 +66,7 @@ def test_kwargs():


def test_dict(environment: Environment):
assert environment.dict == {
assert environment._dict == {
"MY": "fake",
"ENVIRONMENT": "here",
"PYTEST_CURRENT_TEST": ANY,
Expand Down

0 comments on commit ef7169d

Please sign in to comment.