summaryrefslogtreecommitdiff
path: root/test/git/test_repo.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/git/test_repo.py')
-rw-r--r--test/git/test_repo.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/git/test_repo.py b/test/git/test_repo.py
index 036ae1e9..29ba463b 100644
--- a/test/git/test_repo.py
+++ b/test/git/test_repo.py
@@ -25,7 +25,9 @@ class TestRepo(object):
Repo("repos/foobar")
def test_description(self):
- assert_equal("Unnamed repository; edit this file to name it for gitweb.", self.repo.description)
+ txt = "Test repository"
+ self.repo.description = txt
+ assert_equal(self.repo.description, txt)
def test_heads_should_return_array_of_head_objects(self):
for head in self.repo.heads: