From c4fddd0761d6028a3975fcb5db47c9771a714343 Mon Sep 17 00:00:00 2001 From: Guilherme Chapiewski Date: Tue, 6 Oct 2009 16:23:54 -0300 Subject: [PATCH] #58: Executing migrations with a Django settings file as a parameter. --- tests/config_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/config_test.py b/tests/config_test.py index 6f1fac2..fdb37c9 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -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