Skip to content

Commit

Permalink
[#1659] dict() > .copy()
Browse files Browse the repository at this point in the history
  • Loading branch information
wardi committed Jun 11, 2014
1 parent 94f2f76 commit f597c8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/new_tests/helpers.py
Expand Up @@ -157,7 +157,7 @@ class FunctionalTestBaseClass():
@classmethod
def setup_class(cls):
# Make a copy of the Pylons config, so we can restore it in teardown.
cls._original_config = config.copy()
cls._original_config = dict(config)
cls._apply_config_changes(config)
cls.app = _get_test_app()

Expand Down

0 comments on commit f597c8f

Please sign in to comment.