-
-
Save jan-matejka/587088325d3d585f887eebe9416bc498 to your computer and use it in GitHub Desktop.
a.py:5 TypeError: string indices must be integers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @pytest.mark.parametrize("in_,out" [ | |
| ("k: v\n" , {"k": "v"}) | |
| , ("k: v\n" , {"k": "v"}) | |
| , ("k.k: foo" , {"k": {'k': "foo"}}) | |
| , ("k.k1: v\nk.k2: v2\nk1.k: v3", {"k": "v"}) | |
| ]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment