From 420836974e6c782096d4363f524abefe204d468f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20H=C3=BCbschle-Schneider?= Date: Mon, 8 Jun 2015 23:42:57 +0200 Subject: [PATCH] Fix irclinky test irclinky no longer does escaping itself, that is now done by DOMfilter. Adapt the test case to reflect this change. --- test/unit/filters.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/filters.js b/test/unit/filters.js index 934996e..c8ea29e 100644 --- a/test/unit/filters.js +++ b/test/unit/filters.js @@ -20,7 +20,7 @@ describe('Filters', function() { })); it('should not mess up IRC channels surrounded by HTML entities', inject(function(irclinkyFilter) { - expect(irclinkyFilter('<"#foo">')).toEqual('<"#foo">'); + expect(irclinkyFilter('<"#foo">')).toEqual('<"\'); $scope.$apply();">#foo">'); })); });