Skip to content

Commit

Permalink
fix unit tests : timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
ziyad-elabid-nw committed Jul 3, 2023
1 parent 33534c3 commit 963982e
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1453,13 +1453,13 @@ other-header: test`;
statusCode: 200,
},
description: url,
endTimestamp: 1580598002,
endTimestamp: (BASE_TIMESTAMP + 2000) / 1000,
op: 'resource.fetch',
startTimestamp: 1580598001,
startTimestamp: (BASE_TIMESTAMP + 1000) / 1000,
},
tag: 'performanceSpan',
},
timestamp: 1580598001,
timestamp: (BASE_TIMESTAMP + 1000) / 1000,
type: 5,
},
]);
Expand Down Expand Up @@ -1532,13 +1532,13 @@ other-header: test`;
statusCode: 200,
},
description: url,
endTimestamp: 1580598002,
endTimestamp: (BASE_TIMESTAMP + 2000) / 1000,
op: 'resource.xhr',
startTimestamp: 1580598001,
startTimestamp: (BASE_TIMESTAMP + 1000) / 1000,
},
tag: 'performanceSpan',
},
timestamp: 1580598001,
timestamp: (BASE_TIMESTAMP + 1000) / 1000,
type: 5,
},
]);
Expand Down

0 comments on commit 963982e

Please sign in to comment.