Skip to content

Commit b518bde

Browse files
committed
removed import 'from twisted.trial import unittest' and updated test suite
1 parent e696805 commit b518bde

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

test/index_test.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import unittest2 as unittest
2-
from twisted.trial import unittest
3-
from ipynb.fs.full.index import (name)
2+
from ipynb.fs.full.index import (travel_month, number_of_weeks)
43

54
class TestVariables(unittest.TestCase):
6-
def test_variables_intro(self):
7-
self.assertEqual(name, 'bob')
5+
def test_travel_month(self):
6+
self.assertEqual(travel_month, 'January')

0 commit comments

Comments
 (0)