Skip to content

Commit

Permalink
Respond to feedback
Browse files Browse the repository at this point in the history
As title
  • Loading branch information
stuartarchibald committed Aug 25, 2020
1 parent 362bcfc commit 210a8f2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions numba/tests/test_withlifting.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,12 +531,12 @@ def foo(x):
cfoo(x)

exstr = str(raises.exception)
self.assertIn(
"Missing type annotation on outgoing variable(s): ['t', 'u']",
exstr)
self.assertIn("Missing type annotation on outgoing variable(s): "
"['t', 'u']",
exstr)
self.assertIn("Example code: with objmode"
"(t='<add_type_as_string_here>')",
exstr)
exstr)

def test_case08_raise_from_external(self):
# this segfaults, expect its because the dict needs to raise as '2' is
Expand Down

0 comments on commit 210a8f2

Please sign in to comment.