From 371314d9c3677586ffb277107463fd6ca9ea6550 Mon Sep 17 00:00:00 2001 From: lethosor Date: Wed, 16 Dec 2020 13:16:04 -0500 Subject: [PATCH] Update scripts, tweak test --- scripts | 2 +- test/plugins/workflow.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts b/scripts index 2d94228f35..254f273090 160000 --- a/scripts +++ b/scripts @@ -1 +1 @@ -Subproject commit 2d94228f3578b9878d45a824083bc2e02b7746b6 +Subproject commit 254f27309088cae50b2d7ae29eaabd6572f34cd3 diff --git a/test/plugins/workflow.lua b/test/plugins/workflow.lua index af8d327930..a03d1c2f63 100644 --- a/test/plugins/workflow.lua +++ b/test/plugins/workflow.lua @@ -2,6 +2,6 @@ local workflow = require('plugins.workflow') function test.job_outputs() for job_type in pairs(workflow.test_data.job_outputs) do - expect.true_(df.job_type[job_type], "Found unrecognized job type: " .. tostring(job_type)) + expect.ne(df.job_type[job_type], nil, "Found unrecognized job type: " .. tostring(job_type)) end end