Skip to content

Commit a2046a2

Browse files
author
Pekka Pietikäinen
committed
Break python3 support
1 parent de9d2fd commit a2046a2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Diff for: app.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ def retrieve(self):
1111
if __name__ == "__main__":
1212
app = App()
1313
app.calculate()
14-
print(app.retrieve)
14+
print app.retrieve

Diff for: test.py

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ def test(self):
77
app = App()
88
app.calculate()
99
self.failIf(app.retrieve() != 62)
10+
self.failIf(app.retrieve() > 62)
1011

1112

1213
def main():

0 commit comments

Comments
 (0)