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 e6df26c commit 35f5af7Copy full SHA for 35f5af7
test_xenon.py
@@ -1,9 +1,14 @@
1
# coding=utf-8
2
# import mock # can't use mock because patches influences each other
3
import os
4
+import sys
5
import unittest
6
import collections
7
8
+if sys.version_info[:2] >= (3, 10):
9
+ import collections.abc
10
+ collections.Mapping = collections.abc.Mapping
11
+
12
import httpretty
13
from paramunittest import parametrized
14
0 commit comments