We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5062115 commit 339c834Copy full SHA for 339c834
src/subcommand/push_subcommand.cpp
@@ -100,6 +100,6 @@ void push_subcommand::run()
100
{
101
short_name = refspec;
102
}
103
- std::cout << " * " << short_name << " -> " << short_name << std::endl;
+ std::cout << " * " << short_name << " -> " << short_name << std::endl; // " * [new branch] test-"
104
105
test/test_push.py
@@ -61,7 +61,8 @@ def test_push_private_repo(
61
assert p_push.returncode == 0
62
assert p_push.stdout.count("Username:") == 2
63
assert p_push.stdout.count("Password:") == 2
64
- assert " * [new branch] test-" in p_push.stdout
+ assert " * test-" in p_push.stdout # " * [new branch] test-"
65
+ print(p_push.stdout)
66
67
68
def test_push_branch_private_repo(
0 commit comments