From 3fa15eaa0ccb1f115df2df9cf4538307af493c8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 9 Sep 2024 11:21:54 +0200 Subject: [PATCH] Fix test that ensures all expected job types are embedded It was missing the 'single image render' job type. --- internal/manager/job_compilers/scripts_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/manager/job_compilers/scripts_test.go b/internal/manager/job_compilers/scripts_test.go index f7f7ec7f..7ac060cf 100644 --- a/internal/manager/job_compilers/scripts_test.go +++ b/internal/manager/job_compilers/scripts_test.go @@ -39,6 +39,7 @@ func TestLoadScriptsFrom_embedded(t *testing.T) { expectKeys := map[string]bool{ "echo-sleep-test": true, "simple-blender-render": true, + "single-image-render": true, } assert.Equal(t, expectKeys, keys(compilers)) }