Fix tests from #6327

This commit is contained in:
jeremy@jermolene.com 2022-02-21 15:33:36 +00:00
parent 6a9cc87255
commit 0dcfc3ad2e
1 changed files with 1 additions and 1 deletions

View File

@ -440,7 +440,7 @@ Tests the filtering mechanism.
});
it("should handle the listed operator", function() {
expect(wiki.filterTiddlers("TiddlerOne MissingTiddler +[listed[]]").join(",")).toBe('one,hasList');
expect(wiki.filterTiddlers("TiddlerOne MissingTiddler +[listed[]]").join(",")).toBe('hasList,one');
expect(wiki.filterTiddlers("one two +[listed[tags]]").join(",")).toBe('TiddlerOne,$:/TiddlerTwo,Tiddler Three');
});