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 2020/09/15 15:57:42 UTC

[allura] branch master updated: Avoid test error if git config from user/system has push.default set to 'nothing'

This is an automated email from the ASF dual-hosted git repository.

brondsem pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/allura.git


The following commit(s) were added to refs/heads/master by this push:
     new 34ab520  Avoid test error if git config from user/system has push.default set to 'nothing'
34ab520 is described below

commit 34ab520a771f4a7308acf973c7cb9d40e07f065a
Author: Dave Brondsema <da...@brondsema.net>
AuthorDate: Tue Sep 15 11:57:15 2020 -0400

    Avoid test error if git config from user/system has push.default set to 'nothing'
---
 ForgeGit/forgegit/tests/functional/test_controllers.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ForgeGit/forgegit/tests/functional/test_controllers.py b/ForgeGit/forgegit/tests/functional/test_controllers.py
index f65a823..c5c679a 100644
--- a/ForgeGit/forgegit/tests/functional/test_controllers.py
+++ b/ForgeGit/forgegit/tests/functional/test_controllers.py
@@ -590,7 +590,7 @@ class TestFork(_TestCase):
                 f.write('Very useful README')
             cloned.index.add(['README'])
             cloned.index.commit('Improve documentation')
-            cloned.remotes[0].push()
+            cloned.remotes[0].push('master')
             c.app.repo.refresh()
             self.forked_repo = c.app.repo
             shutil.rmtree(clone_path, ignore_errors=True)