1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-23 18:17:20 +00:00

Fix expected test results for eachday filter operator

The tiddler "a fourth tiddler" doesn't have a modified date, and so
shouldn't appear
This commit is contained in:
Jeremy Ruston 2013-09-21 10:07:49 +01:00
parent 48402ed329
commit f0d459c5c5

View File

@ -158,7 +158,7 @@ describe("Filter tests", function() {
}); });
it("should handle the eachday operator", function() { it("should handle the eachday operator", function() {
expect(wiki.filterTiddlers("[eachday[modified]sort[title]]").join(",")).toBe("a fourth tiddler,Tiddler Three,TiddlerOne"); expect(wiki.filterTiddlers("[eachday[modified]sort[title]]").join(",")).toBe("Tiddler Three,TiddlerOne");
}); });
it("should handle the sameday operator", function() { it("should handle the sameday operator", function() {