aboutsummaryrefslogtreecommitdiff
path: root/rhodecode/tests/vcs
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2012-08-07 00:07:10 +0200
committerMarcin Kuzminski <marcin@python-works.com>2012-08-07 00:07:10 +0200
commit67af96e48bc4bf1c25b1076147b86b6c63eaef03 (patch)
tree2140f72abc3bee96c114c32b3e92dff402a570f7 /rhodecode/tests/vcs
parentec0d33e5faf2ad78cd9545473ea2380aa1a828e5 (diff)
fix vcs test after get_user_home patch
--HG-- branch : beta
Diffstat (limited to 'rhodecode/tests/vcs')
-rw-r--r--rhodecode/tests/vcs/test_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rhodecode/tests/vcs/test_utils.py b/rhodecode/tests/vcs/test_utils.py
index 156029a8..81be0ade 100644
--- a/rhodecode/tests/vcs/test_utils.py
+++ b/rhodecode/tests/vcs/test_utils.py
@@ -259,7 +259,7 @@ class TestGetUserHome(unittest.TestCase):
@mock.patch.object(os, 'environ', {})
def test_defaults_to_none(self):
- self.assertEqual(get_user_home(), None)
+ self.assertEqual(get_user_home(), '')
@mock.patch.object(os, 'environ', {'HOME': '/home/foobar'})
def test_unix_like(self):