From d4a81f199d6ce85aba2684e70bee797ad420f34a Mon Sep 17 00:00:00 2001 From: blackguest Date: Fri, 1 Nov 2013 08:45:07 -0500 Subject: [PATCH] Arrange imports correctly. --- tests/tests.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/tests.py b/tests/tests.py index 6b5bedc..91f3861 100644 --- a/tests/tests.py +++ b/tests/tests.py @@ -1,9 +1,10 @@ import os import sys -from nose.tools import assert_equals, assert_true, assert_false, assert_raises from StringIO import StringIO + from mock import patch +from nose.tools import assert_equals, assert_true, assert_false, assert_raises class TestCheatSheets(object): @@ -61,6 +62,7 @@ class TestCheatSheets(object): clear_cheatfile = '-test-foobar' clear_cheatfile_path = os.path.join(self.cheatpath, clear_cheatfile) assert_false(self.cheatsheets.is_vim_crypted(clear_cheatfile_path)) + # This file is "Vim Encrypted" with the pass phrase "passphrase". vimcrypted_cheatfile = '-test-vim_crypted' vimcrypted_cheatfile_path = os.path.join(