Move config_test to the correct package name.

Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
Daniel Nephin 2015-09-14 21:30:32 -04:00
parent c0c9a7c1e4
commit 831276f531
2 changed files with 2 additions and 2 deletions

View File

View File

@ -280,7 +280,7 @@ class ConfigTest(unittest.TestCase):
def test_logs_warning_for_boolean_in_environment(self, mock_logging):
expected_warning_msg = "Warning: There is a boolean value, True in the 'environment' key."
config.load(
config.ConfigDetails(
build_config_details(
{'web': {
'image': 'busybox',
'environment': {'SHOW_STUFF': True}
@ -298,7 +298,7 @@ class ConfigTest(unittest.TestCase):
with self.assertRaisesRegexp(ConfigurationError, expected_error_msg):
config.load(
config.ConfigDetails(
build_config_details(
{'web': {
'image': 'busybox',
'environment': {'---': 'nope'}