getter/setter optics bug fix

This commit is contained in:
Marcell Vazquez-Chanlatte 2017-10-26 17:46:51 -07:00
parent eda63fd6f0
commit d52fffe826
3 changed files with 15 additions and 45 deletions

View file

@ -2,12 +2,10 @@
import stl
from hypothesis import given, event
from stl.hypothesis import SignalTemporalLogicStategy
from stl.hypothesis import SignalTemporalLogicStrategy
@given(SignalTemporalLogicStategy(max_length=25))
@given(SignalTemporalLogicStrategy)
def test_invertable_repr(phi):
event(str(phi))
assert str(phi) == str(stl.parse(str(phi)))