Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixing logic.
  • Loading branch information
felixfontein committed Apr 18, 2017
1 parent 8652a63 commit 6bc5ddb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_integration.py
Expand Up @@ -590,8 +590,8 @@ def test_section_index_avoidance(self):
# Is it really a page?
with io.open(os.path.join(sec1, 'index.html'), 'r', encoding='utf-8') as fh:
page = fh.read()
self.assertTrue('This is Page 0' not in page)
self.assertTrue('This is Post 0' in page)
self.assertTrue('This is Page 0' in page)
self.assertTrue('This is Post 0' not in page)


class PageIndexTest(EmptyBuildTest):
Expand Down

0 comments on commit 6bc5ddb

Please sign in to comment.