Skip to content
Snippets Groups Projects
Commit 2fc6d375 authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

fix syntax for python2…

parent bc4458f7
No related branches found
No related tags found
No related merge requests found
......@@ -3,11 +3,14 @@ import unittest
import dynamic_graph as dg
from custom_entity import CustomEntity
_SIG = "dynamicgraph::SignalBase<int>*"
ERR = f"""Python argument types in
ERR = (
"""Python argument types in
dynamic_graph.wrap.plug(%s, %s)
did not match C++ signature:
plug({_SIG} signalOut, {_SIG} signalIn)"""
plug("""
"dynamicgraph::SignalBase<int>* signalOut, "
"dynamicgraph::SignalBase<int>* signalIn)"
)
class BindingsTests(unittest.TestCase):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment