Skip to content

Commit

Permalink
Revert "fix: examples should support tags"
Browse files Browse the repository at this point in the history
This reverts commit 88ede01.
  • Loading branch information
fliiiix committed Jul 6, 2021
1 parent cc52886 commit 3bcabe9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
4 changes: 0 additions & 4 deletions radish/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -659,10 +659,6 @@ def _detect_scenario_type(self, line):
:returns: if a scenario of any type is present on the given line
:rtype: bool
"""
if self._detect_examples(line_strip):
self._current_state = FeatureParser.State.EXAMPLES
return True

if (
self._detect_scenario(line)
or self._detect_scenario_outline(line)
Expand Down
1 change: 0 additions & 1 deletion tests/features/tags-everywhere.feature
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ Feature: Support Tags everywhere
When I add them up
Then I expect the sum to be <z>

@examples_tag
Examples:
| x | y | z |
| 1 | 2 | 3 |
Expand Down

0 comments on commit 3bcabe9

Please sign in to comment.