-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix expected results, test non-idempotently
- Loading branch information
1 parent
76ed803
commit 016e299
Showing
7 changed files
with
41 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 4 additions & 3 deletions
7
src/test/resources/tags/eager/extendstag/defers-block-in-extends-child.expected.jinja
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
<html> | ||
{% set current_path = '../eager/extendstag/base.html' %}<html> | ||
<body> | ||
<div class="sidebar"> | ||
<h3>Table Of Contents</h3> | ||
{{ deferred }} | ||
{% set temp_current_path_743889914 = current_path %}{% set current_path = '' %}<h3>Table Of Contents</h3> | ||
{{ deferred }}{% set current_path = temp_current_path_743889914 %} | ||
</div> | ||
</body> | ||
</html> | ||
|
8 changes: 4 additions & 4 deletions
8
src/test/resources/tags/eager/extendstag/defers-super-block-with-deferred.expected.jinja
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<html> | ||
{% set current_path = '../eager/extendstag/base-deferred.html' %}<html> | ||
<body> | ||
<div class="sidebar"> | ||
<h3>Table Of Contents</h3> | ||
{% set temp_current_path_743889914 = current_path %}{% set current_path = '' %}<h3>Table Of Contents</h3> | ||
|
||
<p>this is a {{ deferred }}.</p> | ||
|
||
{% set current_path = temp_current_path_743889914 %} | ||
</div> | ||
</body> | ||
</html> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters