Skip to content

Commit

Permalink
small revision
Browse files Browse the repository at this point in the history
  • Loading branch information
TomyYamy committed Mar 28, 2022
1 parent 8ad3610 commit 9a0ddb1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def test_next_without_pastify(self):

spec.parse()

self.assertRaises(rtamt.LTLNotImplementedException, spec.update, 0, [('req', self.left1)])
self.assertRaises(rtamt.STLNotImplementedException, spec.update, 0, [('req', self.left1)])

def test_next_with_pastify(self):
spec = rtamt.StlDiscreteTimeOnlineSpecificationCpp()
Expand Down Expand Up @@ -354,7 +354,7 @@ def test_eventually_without_pastify(self):

spec.parse()

self.assertRaises(rtamt.LTLNotImplementedException, spec.update, 0, [('req', self.left1)])
self.assertRaises(rtamt.STLNotImplementedException, spec.update, 0, [('req', self.left1)])

def test_eventually_with_pastify(self):
spec = rtamt.StlDiscreteTimeOnlineSpecificationCpp()
Expand Down Expand Up @@ -436,7 +436,7 @@ def test_until_without_pastify(self):

spec.parse()

self.assertRaises(rtamt.LTLNotImplementedException, spec.update, 0, [('req', self.left1), ('gnt', self.right1)])
self.assertRaises(rtamt.STLNotImplementedException, spec.update, 0, [('req', self.left1), ('gnt', self.right1)])

def test_always_with_pastify(self):
spec = rtamt.StlDiscreteTimeOnlineSpecificationCpp()
Expand All @@ -447,7 +447,7 @@ def test_always_with_pastify(self):

spec.parse()

self.assertRaises(rtamt.LTLPastifyException, spec.pastify)
self.assertRaises(rtamt.STLPastifyException, spec.pastify)

def test_eventually_0_1_without_pastify(self):
spec = rtamt.StlDiscreteTimeOnlineSpecificationCpp()
Expand Down

0 comments on commit 9a0ddb1

Please sign in to comment.