]> git.ipfire.org Git - thirdparty/moment.git/commitdiff
Fix nn locale test
authorAlexander Tømmerås <flugged@gmail.com>
Fri, 8 Apr 2016 09:21:54 +0000 (11:21 +0200)
committerIskren Chernev <iskren.chernev@gmail.com>
Sat, 16 Apr 2016 07:46:27 +0000 (00:46 -0700)
src/test/locale/nn.js

index 637df4056013332a3a83e750a85670f19b5e213e..08b9c8410ed5c83187a5411a75ae14d724823733 100644 (file)
@@ -138,11 +138,11 @@ test('from', function (assert) {
 
 test('suffix', function (assert) {
     assert.equal(moment(30000).from(0), 'om nokre sekund',  'prefix');
-    assert.equal(moment(0).from(30000), 'for nokre sekund sidan', 'suffix');
+    assert.equal(moment(0).from(30000), 'nokre sekund sidan', 'suffix');
 });
 
 test('now from now', function (assert) {
-    assert.equal(moment().fromNow(), 'for nokre sekund sidan',  'now from now should display as in the past');
+    assert.equal(moment().fromNow(), 'nokre sekund sidan',  'now from now should display as in the past');
 });
 
 test('fromNow', function (assert) {