From 14699d31956baf1c3e079dd619c5c66ed09e339c Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sat, 20 Dec 2014 02:30:54 +0100 Subject: [PATCH] Fix test --- tests/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index 0166f15..c6e2b26 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -66,7 +66,7 @@ def test_storage_instance_from_config(monkeypatch): import vdirsyncer.storage monkeypatch.setitem(vdirsyncer.storage.storage_names, 'lol', lol) config = {'type': 'lol', 'foo': 'bar', 'baz': 1} - assert cli.utils.storage_instance_from_config(config) == 'OK' + assert cli.utils._storage_instance_from_config(config) == 'OK' def test_parse_pairs_args():