Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[locale] Update dow for Konkani locales #5676

Merged
merged 6 commits into from
Sep 13, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update gom-deva.js
  • Loading branch information
WikiDiscoverer authored Aug 11, 2020
commit 31ab76c52c339481cd984d2e1ec4da8763922748
12 changes: 6 additions & 6 deletions src/test/locale/gom-deva.js
Original file line number Diff line number Diff line change
Expand Up @@ -419,8 +419,8 @@ test('calendar all else', function (assert) {
test('weeks year starting sunday format', function (assert) {
assert.equal(
moment([2012, 0, 1]).format('w ww wo'),
'52 52 52',
'Jan 1 2012 should be week 52'
'1 01 1',
'Jan 1 2012 should be week 1'
);
assert.equal(
moment([2012, 0, 2]).format('w ww wo'),
Expand All @@ -429,8 +429,8 @@ test('weeks year starting sunday format', function (assert) {
);
assert.equal(
moment([2012, 0, 8]).format('w ww wo'),
'1 01 1',
'Jan 8 2012 should be week 1'
'2 02 2',
'Jan 8 2012 should be week 2'
);
assert.equal(
moment([2012, 0, 14]).format('w ww wo'),
Expand All @@ -439,7 +439,7 @@ test('weeks year starting sunday format', function (assert) {
);
assert.equal(
moment([2012, 0, 15]).format('w ww wo'),
'2 02 2',
'Jan 15 2012 should be week 2'
'3 03 3',
'Jan 15 2012 should be week 3'
);
});