elisa.core.pattern_matcher.PatternMatcher matches things it shouldn't
Bug #251129 reported by
Guillaume Emont
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Moovida |
Fix Released
|
Undecided
|
Guillaume Emont |
Bug Description
The match should do exact match, and not search.
Example code that fails:
from elisa.core.
def do_test():
result = False
matcher = PatternMatcher()
matcher.
try:
result = matcher.
except MatchNotFound:
result = True
return result
Expected behaviour: do_test() returns True.
Current behaviour: do_test() returns False.
To Verify:
1) Install elisa
2) run trial.py elisa-core\
3) test_no_wide_match, passes
Related branches
Changed in elisa: | |
status: | In Progress → Fix Committed |
milestone: | none → 0.5.3 |
description: | updated |
Changed in elisa: | |
status: | Fix Committed → Fix Released |
To post a comment you must log in.
I need to fix this to be able to do #232574 (DVD).