Skip to content

Commit

Permalink
make for pull1
Browse files Browse the repository at this point in the history
  • Loading branch information
JerrySentry committed Jan 5, 2024
1 parent a7e801e commit c8ca2e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/integration_tests/test_banker.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ def test_backdoor():
bank = Banker()
assert bank.balance == 0
bank.backdoor()
assert bank.balance == 4000
assert bank.balance == 5000
2 changes: 1 addition & 1 deletion app/integrator/banker.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ def reset(self):
self.balance = 0

def backdoor(self):
self.balance += 4000
self.balance += 5000
2 changes: 1 addition & 1 deletion coverage.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" ?>
<coverage version="7.3.2" timestamp="1704234468380" lines-valid="301" lines-covered="110" line-rate="0.3654" branches-covered="0" branches-valid="0" branch-rate="0" complexity="0">
<coverage version="7.3.2" timestamp="1704481400315" lines-valid="301" lines-covered="110" line-rate="0.3654" branches-covered="0" branches-valid="0" branch-rate="0" complexity="0">
<!-- Generated by coverage.py: https://coverage.readthedocs.io/en/7.3.2 -->
<!-- Based on https://raw.githubusercontent.com/cobertura/web/master/htdocs/xml/coverage-04.dtd -->
<sources>
Expand Down

0 comments on commit c8ca2e4

Please sign in to comment.