Skip to content

Commit

Permalink
migrate from external mock package to stdlib unittest.mock
Browse files Browse the repository at this point in the history
It was moved to the stdlib in python 3.3, and the PyPI version is a
backport for python versions less than 3.3.
  • Loading branch information
eli-schwartz authored and Suor committed Dec 5, 2023
1 parent 750d153 commit 40f8d6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import re
import platform
import unittest
import mock
from unittest import mock

import django
from django.db import connection
Expand Down

0 comments on commit 40f8d6d

Please sign in to comment.