We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2579a26 + 5f7c090 commit 1ae7246Copy full SHA for 1ae7246
1 file changed
tests/unit_test.py
@@ -1,17 +1,12 @@
1
import os
2
import urlparse
3
import unittest
4
-import simplejson
5
-import logging
6
import requests
7
-from mock import Mock, patch
+from mock import patch
8
9
from client import DiffbotClient
10
11
12
-logger = logging.getLogger(__name__)
13
-
14
15
def fake_get(url, params):
16
path = urlparse.urlparse(url).path
17
path_tuple = os.path.split(path)
@@ -82,4 +77,4 @@ def test_analyze_api(self):
82
77
83
78
84
79
if __name__ == '__main__':
85
- unittest.main()
80
+ unittest.main()
0 commit comments