summaryrefslogtreecommitdiffstats
path: root/js/tests/services/unreadcountformaterSpec.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'js/tests/services/unreadcountformaterSpec.coffee')
-rw-r--r--js/tests/services/unreadcountformaterSpec.coffee8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/tests/services/unreadcountformaterSpec.coffee b/js/tests/services/unreadcountformaterSpec.coffee
index 86deab2af..9e61f8525 100644
--- a/js/tests/services/unreadcountformaterSpec.coffee
+++ b/js/tests/services/unreadcountformaterSpec.coffee
@@ -27,9 +27,9 @@ describe 'unreadCountFormatter', ->
beforeEach inject (@unreadCountFormatter) =>
- it 'should return the normal count if its below 99', =>
- expect(@unreadCountFormatter(99)).toBe(99)
+ it 'should return the normal count if its below 999', =>
+ expect(@unreadCountFormatter(999)).toBe(999)
- it 'should set the count to 99+ if the count is over 99', =>
- expect(@unreadCountFormatter(100)).toBe('99+') \ No newline at end of file
+ it 'should set the count to 999+ if the count is over 999', =>
+ expect(@unreadCountFormatter(1000)).toBe('999+') \ No newline at end of file