We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ab4b81 commit eb58152Copy full SHA for eb58152
python/example-pytest-selfie/tests/simple_inline_test.py
@@ -13,5 +13,5 @@ def test_write():
13
expect_selfie("B").to_be("B")
14
expect_selfie(20000).to_be(20_000)
15
expect_selfie([1, 2, 3]).to_be([1, 2, 3])
16
- expect_selfie(("a", 2, 3)).to_be(('a', 2, 3))
17
- expect_selfie({"a": 1, "b": 2}).to_be({'a': 1, 'b': 2})
+ expect_selfie(("a", 2, 3)).to_be(("a", 2, 3))
+ expect_selfie({"a": 1, "b": 2}).to_be({"a": 1, "b": 2})
0 commit comments