Skip to content

Commit adbc0da

Browse files
committed
fixup! six.moves imports
1 parent 439d0b3 commit adbc0da

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
CRUD functions. These tests always use a mock http connection so not not
1313
need a live server to run against."""
1414

15+
import configparser
1516
import base64
1617
import datetime
1718
import json
@@ -180,7 +181,7 @@ def test_read_config(self):
180181
"""Validate that config values are properly coerced."""
181182
this_dir = os.path.dirname(os.path.realpath(__file__))
182183
config_path = os.path.join(this_dir, "test_config_file")
183-
config = base.ConfigParser()
184+
config = configparser.ConfigParser()
184185
config.read(config_path)
185186
result = config.get("SERVER_INFO", "api_key")
186187
expected = "%abce"

0 commit comments

Comments
 (0)