From ca0508f2f0cf1a98bc0267c4c9f11946b89db957 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 15 May 2022 17:22:58 +0200 Subject: [PATCH] update to https to match hotspots --- InvenTree/plugin/test_plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/InvenTree/plugin/test_plugin.py b/InvenTree/plugin/test_plugin.py index 30054d569b..5de813150f 100644 --- a/InvenTree/plugin/test_plugin.py +++ b/InvenTree/plugin/test_plugin.py @@ -87,7 +87,7 @@ class InvenTreePluginTests(TestCase): AUTHOR = 'AA BB' DESCRIPTION = 'A description' VERSION = '1.2.3a' - WEBSITE = 'http://aa.bb/cc' + WEBSITE = 'https://aa.bb/cc' LICENSE = 'MIT' self.plugin_name = NameInvenTreePlugin() @@ -147,7 +147,7 @@ class InvenTreePluginTests(TestCase): # website self.assertEqual(self.plugin.website, None) self.assertEqual(self.plugin_simple.website, None) - self.assertEqual(self.plugin_name.website, 'http://aa.bb/cc') + self.assertEqual(self.plugin_name.website, 'https://aa.bb/cc') # license self.assertEqual(self.plugin.license, None)