Skip to content

Commit

Permalink
#58: Executing migrations with a Django settings file as a parameter.
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermechapiewski committed Oct 6, 2009
1 parent 2045344 commit c4fddd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/config_test.py
Expand Up @@ -98,7 +98,7 @@ def test_it_should_get_local_variable_values(self):
config = FileConfig(config_path)

weird_variable = 'weird_value'
result = config.get_local_variable(locals(), 'weird_variable', 'weirdest_variable')
result = config.get_variable(locals(), 'weird_variable', 'weirdest_variable')

assert result == weird_variable

Expand Down

0 comments on commit c4fddd0

Please sign in to comment.