From beb6533cb377b3f5c2241864e7bad04079a06b25 Mon Sep 17 00:00:00 2001 From: heck Date: Sun, 7 Mar 2021 17:49:44 +0100 Subject: [PATCH] PityTest: typo --- test/java/foundation/pEp/pitytest/utils/TestUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/java/foundation/pEp/pitytest/utils/TestUtils.java b/test/java/foundation/pEp/pitytest/utils/TestUtils.java index 159ee34..41ad9dc 100644 --- a/test/java/foundation/pEp/pitytest/utils/TestUtils.java +++ b/test/java/foundation/pEp/pitytest/utils/TestUtils.java @@ -70,7 +70,7 @@ public class TestUtils { if (envVarExists(name)) { ret = System.getenv(name); } else { - throw new RuntimeException("ENV var does not exits"); + throw new RuntimeException("ENV var does not exist"); } return ret; }