You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2015/10/28 17:28:26 UTC

[24/35] allura git commit: [#7924] ticket:853 Fix one more test

[#7924] ticket:853 Fix one more test


Project: http://git-wip-us.apache.org/repos/asf/allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/8c90a5b2
Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/8c90a5b2
Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/8c90a5b2

Branch: refs/heads/master
Commit: 8c90a5b201dd3ce94bc6fd81638c7048805cdced
Parents: e094602
Author: Igor Bondarenko <je...@gmail.com>
Authored: Fri Oct 23 17:47:46 2015 +0300
Committer: Igor Bondarenko <je...@gmail.com>
Committed: Tue Oct 27 16:22:12 2015 +0200

----------------------------------------------------------------------
 ForgeSVN/forgesvn/tests/functional/test_controllers.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/8c90a5b2/ForgeSVN/forgesvn/tests/functional/test_controllers.py
----------------------------------------------------------------------
diff --git a/ForgeSVN/forgesvn/tests/functional/test_controllers.py b/ForgeSVN/forgesvn/tests/functional/test_controllers.py
index 6aeca55..0422b38 100644
--- a/ForgeSVN/forgesvn/tests/functional/test_controllers.py
+++ b/ForgeSVN/forgesvn/tests/functional/test_controllers.py
@@ -231,12 +231,12 @@ class TestRootController(SVNTestController):
         shutil.rmtree(c.app.repo.tarball_path, ignore_errors=True)
         r = self.app.get('/p/test/svn-tags/19/tree/')
         form = r.html.find('form', 'tarball')
-        assert_equal(form.button.text, 'Download Snapshot')
+        assert_equal(form.button.text, '&nbsp;Download Snapshot')
         assert_equal(form.get('action'), '/p/test/svn-tags/19/tarball')
 
         r = self.app.get('/p/test/svn-tags/19/tree/tags/tag-1.0/')
         form = r.html.find('form', 'tarball')
-        assert_equal(form.button.text, 'Download Snapshot')
+        assert_equal(form.button.text, '&nbsp;Download Snapshot')
         assert_equal(form.get('action'), '/p/test/svn-tags/19/tarball')
         assert_equal(
             form.find('input', attrs=dict(name='path')).get('value'), '/tags/tag-1.0')