Skip to content

Commit

Permalink
Fix issue log2timeline#70
Browse files Browse the repository at this point in the history
  • Loading branch information
kiddinn committed Jul 8, 2019
1 parent 24963c9 commit 1044a3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion l2tscaffolder/templates/ts_index_analyzer_test.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ class Test{{ class_name }}Plugin(BaseTest):
def test_analyzer(self):
"""Test analyzer."""
# TODO: Write actual tests here.
self.assertIsEqual(True, False)
self.assertEqual(True, False)
2 changes: 1 addition & 1 deletion l2tscaffolder/templates/ts_sketch_analyzer_test.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ class Test{{ class_name }}Plugin(BaseTest):
def test_analyzer(self):
"""Test analyzer."""
# TODO: Write actual tests here.
self.assertIsEqual(True, False)
self.assertEqual(True, False)

0 comments on commit 1044a3b

Please sign in to comment.