Skip to content

Commit

Permalink
Fix issue with mocking
Browse files Browse the repository at this point in the history
  • Loading branch information
adang1345 committed Oct 8, 2024
1 parent fd1b9bb commit e98402f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -1343,7 +1343,7 @@ class Python38TestCase(unittest.TestCase):

# mock the Conda-Forge distribution of Python 3.8 to test loading with
# LoadLibraryExW()
_patch = "import sys; sys.version = '3.8.20 | packaged by conda-forge | (default, Sep 30 2024, 17:44:03) [MSC v.1929 64 bit (AMD64)]'; "
_patch = "import platform, sys; sys.version = '3.8.20 | packaged by conda-forge | (default, Sep 30 2024, 17:44:03) [MSC v.1929 64 bit (AMD64)]'; platform.python_implementation = lambda: return 'CPython'; "

def test_show(self):
"""Wheel target is older"""
Expand Down

0 comments on commit e98402f

Please sign in to comment.