Skip to content

Commit cf91a07

Browse files
committed
style: remove commented code
1 parent f6c1c66 commit cf91a07

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

tests/commands/test_bump_command.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -540,16 +540,10 @@ def test_bump_not_add_unstaged(mocker: MockFixture, tmp_commitizen_project):
540540
create_file_and_commit("feat: new file", unstaged_file)
541541
tmp_file = tmp_commitizen_project.join(unstaged_file)
542542
tmp_file.write("updated content")
543-
# print("Before")
544-
# cmd_res = cmd.run('git status')
545-
# print(cmd_res.out)
546-
547543
testargs = ["cz", "bump", "--yes"]
548544
mocker.patch.object(sys, "argv", testargs)
549545
cli.main()
550-
# print("After")
551546
cmd_res = cmd.run("git diff --name-only")
552-
# print(cmd_res.out)
553547
assert unstaged_file in cmd_res.out
554548

555549

tests/providers/test_scm_provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def test_scm_provider(
6060
# Should not fail on set_version()
6161
provider.set_version("43.1")
6262

63-
# Shouldn not have any files
63+
# Should not have any files
6464
files = provider.get_files()
6565
assert files == []
6666

0 commit comments

Comments
 (0)