From 911f2140679c618e0a6e8f47b3f92101d96462f4 Mon Sep 17 00:00:00 2001 From: Samuel Gaist <samuel.gaist@idiap.ch> Date: Mon, 20 Apr 2020 15:24:28 +0200 Subject: [PATCH] [toolchains][test] Update declaration error check --- beat/web/toolchains/tests.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/beat/web/toolchains/tests.py b/beat/web/toolchains/tests.py index 3de38a634..c3c6e11cd 100644 --- a/beat/web/toolchains/tests.py +++ b/beat/web/toolchains/tests.py @@ -853,9 +853,7 @@ class ToolchainCreation(ToolchainsAPIBase): ) content = self.checkResponse(response, 400, content_type="application/json") - self.assertNotEqual( - content.find("The toolchain declaration is **invalid**"), -1 - ) + self.assertTrue("declaration" in content) def test_no_forking_for_anonymous_user(self): response = self.client.post( -- GitLab