Skip to content

Commit 339c834

Browse files
committed
bla
1 parent 5062115 commit 339c834

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/subcommand/push_subcommand.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,6 @@ void push_subcommand::run()
100100
{
101101
short_name = refspec;
102102
}
103-
std::cout << " * " << short_name << " -> " << short_name << std::endl;
103+
std::cout << " * " << short_name << " -> " << short_name << std::endl; // " * [new branch] test-"
104104
}
105105
}

test/test_push.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ def test_push_private_repo(
6161
assert p_push.returncode == 0
6262
assert p_push.stdout.count("Username:") == 2
6363
assert p_push.stdout.count("Password:") == 2
64-
assert " * [new branch] test-" in p_push.stdout
64+
assert " * test-" in p_push.stdout # " * [new branch] test-"
65+
print(p_push.stdout)
6566

6667

6768
def test_push_branch_private_repo(

0 commit comments

Comments
 (0)