Skip to content

Commit b0261b3

Browse files
committed
Fix tests for eager normalization
1 parent 100b686 commit b0261b3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test_skbuild_settings.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -541,8 +541,8 @@ def test_skbuild_settings_pyproject_toml_envvar_defines(
541541
"a": "1",
542542
"b": "2",
543543
"c": "empty",
544-
"d": False,
545-
"e": False,
544+
"d": "FALSE",
545+
"e": "FALSE",
546546
}
547547

548548
monkeypatch.setenv("DEFAULT", "3")
@@ -552,8 +552,8 @@ def test_skbuild_settings_pyproject_toml_envvar_defines(
552552
"a": "1",
553553
"b": "2",
554554
"c": "3",
555-
"d": False,
556-
"e": True,
555+
"d": "FALSE",
556+
"e": "TRUE",
557557
}
558558

559559

0 commit comments

Comments
 (0)