From 93b5029baf367b2b9d80c4ce9863a9d0c8bbed30 Mon Sep 17 00:00:00 2001 From: refaelm Date: Mon, 25 Nov 2024 16:26:56 +0200 Subject: [PATCH] change registry in progress status to upper case --- armotypes/registrytypes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/armotypes/registrytypes.go b/armotypes/registrytypes.go index 0dfa826..0753a74 100644 --- a/armotypes/registrytypes.go +++ b/armotypes/registrytypes.go @@ -65,7 +65,7 @@ const ( // Scan statuses Failed RegistryScanStatus = "Failed" - InProgress RegistryScanStatus = "In progress" + InProgress RegistryScanStatus = "In Progress" Completed RegistryScanStatus = "Completed" )