Skip to content

Commit

Permalink
Remove TestCase.landing_page
Browse files Browse the repository at this point in the history
  • Loading branch information
tysmith committed Dec 29, 2023
1 parent 6b8777e commit b4d6e1f
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions grizzly/common/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit b4d6e1f

Please sign in to comment.