Skip to content

Commit ed31195

Browse files
committed
-
1 parent 2d4b7d8 commit ed31195

File tree

3 files changed

+3
-15
lines changed

3 files changed

+3
-15
lines changed

source_py3/test_python_toolbox/test_address_tools/test_describe.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,9 +242,9 @@ def test_bad_module_name():
242242
'.'.join((non_sensical_module_name, 'A'))
243243

244244
assert describe(A.m) == \
245-
'.'.join((non_sensical_module_name, 'A.m'))
245+
'.'.join((non_sensical_module_name, 'm'))
246246
assert describe(A.m, shorten=True, root=email, namespace={}) == \
247-
'.'.join((non_sensical_module_name, 'A.m'))
247+
'.'.join((non_sensical_module_name, 'm'))
248248

249249

250250
def test_function_in_something():

source_py3/test_python_toolbox/test_persistent/test_cross_process_persistent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def test_helpful_warnings_for_old_protocols():
167167
'''
168168
Test that helpful errors are given when trying to pickle with old protocol.
169169
'''
170-
pickle_modules = [pickle, cPickle]
170+
pickle_modules = [pickle]
171171
cross_process_persistents = [A(), CrossProcessPersistent()]
172172
old_protocols = [0, 1]
173173

source_py3/test_python_toolbox/test_pickle_tools/test_using_c_pickle.py

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)