From 1366556ace3e71f9e4abe63554050ddf9c0dabb6 Mon Sep 17 00:00:00 2001 From: Brian Ford Date: Tue, 8 Oct 2013 14:40:44 -0700 Subject: test(filters): fix timezone-dependent test Closes #4218 --- test/ng/filter/filtersSpec.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/ng/filter/filtersSpec.js b/test/ng/filter/filtersSpec.js index cd83437f..2d648b65 100644 --- a/test/ng/filter/filtersSpec.js +++ b/test/ng/filter/filtersSpec.js @@ -247,7 +247,10 @@ describe('filters', function() { }); it('should accept negative numbers as strings', function() { - expect(date('-1')).toEqual('Dec 31, 1969'); + //Note: this tests a timestamp set for 3 days before the unix epoch. + //The behavior of `date` depends on your timezone, which is why we check just + //the year and not the whole daye. See Issue #4218 + expect(date('-259200000').split(' ')[2]).toEqual('1969'); }); it('should format timezones correctly (as per ISO_8601)', function() { -- cgit v1.2.3