Skip to content

Commit d7ec5e6

Browse files
committedJan 24, 2017
tweaked tests to test imports of cs50.SQL
1 parent d1c6c93 commit d7ec5e6

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed
 

‎test/python2.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
import cs50
22

3+
from cs50 import SQL
4+
35
l = cs50.get_long()
46
print(l)

‎test/python3.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
import cs50
2+
from cs50 import SQL
3+
4+
i = cs50.get_int()
5+
print(i)
26

3-
l = cs50.get_long()
4-
print(l)

0 commit comments

Comments
 (0)
Please sign in to comment.