Correct copy/pasted test description

This commit is contained in:
Robin Neatherway 2020-06-26 16:01:59 +01:00
parent 504c8cfc6f
commit 151d531bd0
3 changed files with 3 additions and 3 deletions

View file

@ -58,7 +58,7 @@ test('getThreadsFlag() should return the correct --threads flag', t => {
}
});
test('getThreadsFlag() throws if the ram input is < 0 or NaN', t => {
test('getThreadsFlag() throws if the threads input is not an integer', t => {
process.env['INPUT_THREADS'] = "hello!";
t.throws(util.getThreadsFlag);
});