Skip to content

Commit

Permalink
test(lib): fix randint max value
Browse files Browse the repository at this point in the history
  • Loading branch information
manushak committed Apr 4, 2024
1 parent 958e322 commit 0a12429
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/__tests__/unit/lib/mock-observations/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ describe('lib/mock-observations: ', () => {
'common-key': 'common-val',
},
randint: {
'cpu/utilization': {min: 10, max: 10},
'cpu/utilization': {min: 10, max: 11},
},
},
};
Expand Down

0 comments on commit 0a12429

Please sign in to comment.