From e9ec7f9941def1d06f4b17a99882242c2f3b835f Mon Sep 17 00:00:00 2001 From: "Craig R. Eddy" Date: Tue, 16 Oct 2018 14:44:15 -0400 Subject: [PATCH] Fix typo in the Assert re. missing API key --- Clarifai.IntegrationTests/BaseIntTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Clarifai.IntegrationTests/BaseIntTests.cs b/Clarifai.IntegrationTests/BaseIntTests.cs index 9e08274..928ab3a 100644 --- a/Clarifai.IntegrationTests/BaseIntTests.cs +++ b/Clarifai.IntegrationTests/BaseIntTests.cs @@ -37,7 +37,7 @@ public void SetUp() if (string.IsNullOrWhiteSpace( Environment.GetEnvironmentVariable("CLARIFAI_API_KEY"))) { - Assert.Inconclusive("The CLARIFAI_API_KEY environment variable must be set in order to rum the integration tests."); + Assert.Inconclusive("The CLARIFAI_API_KEY environment variable must be set in order to run the integration tests."); } } @@ -66,4 +66,4 @@ protected byte[] ReadResource(string fileName) return bytes; } } -} \ No newline at end of file +}