From c542de17f77ea7fd4eaac3c3f3dd0f90427226b0 Mon Sep 17 00:00:00 2001 From: Aiden <53726630+aiden3c@users.noreply.github.com> Date: Thu, 5 Sep 2024 11:28:16 -0400 Subject: [PATCH] Removed test (#14428) --- tests/api2/test_120_certificateauthority.py | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 tests/api2/test_120_certificateauthority.py diff --git a/tests/api2/test_120_certificateauthority.py b/tests/api2/test_120_certificateauthority.py deleted file mode 100644 index e0637c352fea3..0000000000000 --- a/tests/api2/test_120_certificateauthority.py +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env python3 - -# Author: Eric Turgeon -# License: BSD - -import pytest -import sys -import os -apifolder = os.getcwd() -sys.path.append(apifolder) -from functions import GET - - -def test_01_get_certificateauthority_query(): - results = GET('/certificateauthority/') - assert results.status_code == 200, results.text - assert isinstance(results.json(), list), results.text