Skip to content

Commit

Permalink
fix: js unit test when save dash (#11632)
Browse files Browse the repository at this point in the history
  • Loading branch information
Grace Guo authored Nov 10, 2020
1 parent d315dd9 commit 966a826
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ describe('dashboardState reducer', () => {
{},
);

const lastModifiedTime = Math.round(new Date().getTime() / 1000);
const lastModifiedTime = new Date().getTime() / 1000;
expect(
dashboardStateReducer(
{ hasUnsavedChanges: true },
Expand Down

0 comments on commit 966a826

Please sign in to comment.