From b4d6e1fcb93baa392f8adca91fcce0744ff13d7e Mon Sep 17 00:00:00 2001 From: Tyson Smith Date: Fri, 29 Dec 2023 15:14:49 -0800 Subject: [PATCH] Remove TestCase.landing_page --- grizzly/common/storage.py | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/grizzly/common/storage.py b/grizzly/common/storage.py index e4c0d2d4..7feb5bc2 100644 --- a/grizzly/common/storage.py +++ b/grizzly/common/storage.py @@ -350,22 +350,6 @@ def _find_entry_point(path): raise TestCaseLoadFailure("Could not determine entry point") return entry_point - @property - def landing_page(self): - """TestCase.landing_page is deprecated! - Should be replaced with TestCase.entry_point. - - Args: - None - - Returns: - str: TestCase.entry_point. - """ - LOG.warning( - "'TestCase.landing_page' deprecated, use 'TestCase.entry_point' in adapter" - ) - return self.entry_point - @classmethod def load(cls, path, entry_point=None, catalog=False): """Load a TestCase.