Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
xsalonx committed Apr 10, 2024
1 parent c62dd0a commit 8236f4b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ module.exports = () => {
);
});

it('should fail to create quality control flag due to incorrect qc flag time period', async () => {
it('should fail to create quality control flag due to qc flag time period out of range of run\'s period', async () => {
const qcFlagCreationParameters = {
from: new Date('2019-08-08 11:36:40').getTime(), // Failing property
to: new Date('2019-08-09 05:40:00').getTime(),
Expand All @@ -281,7 +281,7 @@ module.exports = () => {
);
});

it('should fail to create quality control flag due to incorrect qc flag time period', async () => {
it('should fail to create quality control flag due to qc flag time period out of range of run\'s period', async () => {
const qcFlagCreationParameters = {
from: new Date('2019-08-09 04:16:40').getTime(), // Failing property
to: new Date('2019-08-08 21:20:00').getTime(), // Failing property
Expand Down

0 comments on commit 8236f4b

Please sign in to comment.