Skip to content

Commit ed4dc54

Browse files
authored
Merge pull request iiasa#1 from iiasa/setup
tests now work as expected
2 parents a57443c + 0e49626 commit ed4dc54

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

test_project.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22

33
from nose.tools import assert_equal
44

5+
56
def test_apple():
6-
assert_equal(project.letter_in_string('apple', True)
7-
7+
assert_equal(project.letter_in_string('apple'), True)
8+
9+
810
def test_lemon():
9-
assert_equal(project.letter_in_string('lemon', False)
11+
assert_equal(project.letter_in_string('lemon'), True)

0 commit comments

Comments
 (0)