You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by jo...@apache.org on 2013/08/23 18:58:19 UTC

[19/50] git commit: [#3154] ticket:393 Fix test after merge

[#3154] ticket:393 Fix test after merge


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

Branch: refs/heads/cj/6530
Commit: 88834803601ea327ae20c7752f543445595f6d86
Parents: b2ae1d0
Author: Igor Bondarenko <je...@gmail.com>
Authored: Wed Jul 24 13:32:26 2013 +0000
Committer: Dave Brondsema <db...@slashdotmedia.com>
Committed: Thu Aug 22 20:04:42 2013 +0000

----------------------------------------------------------------------
 Allura/allura/tests/test_tasks.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/88834803/Allura/allura/tests/test_tasks.py
----------------------------------------------------------------------
diff --git a/Allura/allura/tests/test_tasks.py b/Allura/allura/tests/test_tasks.py
index 60a1abc..06d4ede 100644
--- a/Allura/allura/tests/test_tasks.py
+++ b/Allura/allura/tests/test_tasks.py
@@ -363,7 +363,7 @@ class TestExportTasks(unittest.TestCase):
         export_tasks.bulk_export('test', [u'bugs', u'blog'], 'test-admin')
         assert_equal(log.info.call_count, 2)
         assert_equal(log.info.call_args_list, [
-            mock.call('Tool urls is not exportable. Skipping.'),
+            mock.call('Tool bugs is not exportable. Skipping.'),
             mock.call('Tool blog is not exportable. Skipping.')])
 
     @mock.patch('allura.tasks.export_tasks.shutil')