@@ -119,10 +119,11 @@ def test_expand_globs_without_changing_directory() -> None:
119119 (True , {"extension.py:SomeExtension" : {"option" : "value" }}),
120120 (True , {"path/to/extension.py" : {"option" : "value" }}),
121121 (True , {"path/to/extension.py:SomeExtension" : {"option" : "value" }}),
122- (False , "/absolute/path/to/extension.py" ),
123- (False , "/absolute/path/to/extension.py:SomeExtension" ),
124- (False , {"/absolute/path/to/extension.py" : {"option" : "value" }}),
125- (False , {"/absolute/path/to/extension.py:SomeExtension" : {"option" : "value" }}),
122+ # True because OS path normalization.
123+ (True , "/absolute/path/to/extension.py" ),
124+ (True , "/absolute/path/to/extension.py:SomeExtension" ),
125+ (True , {"/absolute/path/to/extension.py" : {"option" : "value" }}),
126+ (True , {"/absolute/path/to/extension.py:SomeExtension" : {"option" : "value" }}),
126127 (False , "dot.notation.path.to.extension" ),
127128 (False , "dot.notation.path.to.pyextension" ),
128129 (False , {"dot.notation.path.to.extension" : {"option" : "value" }}),
0 commit comments