diff options
author | 2012-02-19 19:41:26 +0100 | |
---|---|---|
committer | 2012-02-19 19:41:26 +0100 | |
commit | 3594257f6428988ebb7a87eef47feee206c5dc83 (patch) | |
tree | 98898b67eeff42ceb5bae5a98ab6816448c61619 /pygithub3/tests/requests/test_core.py | |
parent | Repos commits added (diff) | |
download | python-github3-3594257f6428988ebb7a87eef47feee206c5dc83.tar.xz python-github3-3594257f6428988ebb7a87eef47feee206c5dc83.zip |
Fix test imports
Diffstat (limited to 'pygithub3/tests/requests/test_core.py')
-rw-r--r-- | pygithub3/tests/requests/test_core.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pygithub3/tests/requests/test_core.py b/pygithub3/tests/requests/test_core.py index 68663c0..9e38763 100644 --- a/pygithub3/tests/requests/test_core.py +++ b/pygithub3/tests/requests/test_core.py @@ -7,9 +7,9 @@ from mock import Mock from pygithub3.requests import Factory, Body, json, Request from pygithub3.exceptions import (UriInvalid, DoesNotExists, ValidationError, InvalidBodySchema) -from pygithub3.tests.utils.base import mock_json +from pygithub3.tests.utils.base import mock_json, DummyRequest from pygithub3.tests.utils.requests import ( - RequestWithArgs, RequestCleanedUri, RequestBodyInvalidSchema, DummyRequest, + RequestWithArgs, RequestCleanedUri, RequestBodyInvalidSchema, RequestCleanedBody) json.dumps = Mock(side_effect=mock_json) |