Skip to content

Commit

Permalink
test(config.model): don't normalize config
Browse files Browse the repository at this point in the history
  • Loading branch information
loqusion committed May 3, 2024
1 parent cf0045e commit 767582a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/config/test_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def test_default(self):
def test_dict(self):
config = _RootConfig({"shaders": [{"name": "foo", "config": {"foo": "bar"}}]})

assert config.shaders[0].config == {"foo": "BAR"}
assert config.shaders[0].config == {"foo": "bar"}

def test_not_dict(self):
config = _RootConfig({"shaders": [{"name": "foo", "config": 9000}]})
Expand Down

0 comments on commit 767582a

Please sign in to comment.