From d994d89291c7f683fa27bfac80c08cf61129d1c2 Mon Sep 17 00:00:00 2001 From: Charles Cowart Date: Mon, 22 Jul 2024 15:24:02 -0700 Subject: [PATCH] Removed unused config setting --- qiita_client/plugin.py | 1 - qiita_client/tests/test_plugin.py | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/qiita_client/plugin.py b/qiita_client/plugin.py index 0616a8d..a0fdc53 100644 --- a/qiita_client/plugin.py +++ b/qiita_client/plugin.py @@ -379,6 +379,5 @@ def register_command(self, command): PUBLICATIONS = %s [oauth2] -ROOTCA_CERT = %s CLIENT_ID = %s CLIENT_SECRET = %s""" diff --git a/qiita_client/tests/test_plugin.py b/qiita_client/tests/test_plugin.py index ce14c5a..4981cfa 100644 --- a/qiita_client/tests/test_plugin.py +++ b/qiita_client/tests/test_plugin.py @@ -146,8 +146,7 @@ def html_generator_func(a, b, c, d): 'PLUGIN_TYPE = artifact definition\n', 'PUBLICATIONS = \n', '\n', - '[oauth2]\n', - 'ROOTCA_CERT = \n'] + '[oauth2]\n'] # We will test the last 2 lines independently since they're variable # in each test run self.assertEqual(conf[:-2], exp_lines)