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.
Python 3.8
1 parent 77eb529 commit 4e33844Copy full SHA for 4e33844
tests/github/test_issue_0334.py
@@ -1,3 +1,4 @@
1
+import sys
2
import unittest
3
4
from benedict import benedict
@@ -12,6 +13,10 @@ class github_issue_0334_test_case(unittest.TestCase):
12
13
- Run python -m unittest tests.github.test_issue_0334
14
"""
15
16
+ @unittest.skipIf(
17
+ sys.version_info < (3, 9),
18
+ "The | operator supported since Pythopn 3.9",
19
+ )
20
def test_union_with_assignement_operator(self):
21
a = {"a": "a", "b": "b"}
22
b = {"b": "b", "c": "c"}
0 commit comments