Skip to content

Commit 6bc5ddb

Browse files
committedApr 18, 2017
Fixing logic.
1 parent 8652a63 commit 6bc5ddb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎tests/test_integration.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -590,8 +590,8 @@ def test_section_index_avoidance(self):
590590
# Is it really a page?
591591
with io.open(os.path.join(sec1, 'index.html'), 'r', encoding='utf-8') as fh:
592592
page = fh.read()
593-
self.assertTrue('This is Page 0' not in page)
594-
self.assertTrue('This is Post 0' in page)
593+
self.assertTrue('This is Page 0' in page)
594+
self.assertTrue('This is Post 0' not in page)
595595

596596

597597
class PageIndexTest(EmptyBuildTest):

0 commit comments

Comments
 (0)
Please sign in to comment.