Commit 7bcb5eb9 authored by Scott Cyphers's avatar Scott Cyphers

Fix string.

parent 2a35b6bf
......@@ -94,7 +94,7 @@ void test_binary_bad_arguments_tuple(const shared_ptr<Node>& node)
try
{
node->propagate_types();
FAIL() << "Tuple argument to add not detected.";
FAIL() << "Tuple argument not detected.";
}
catch (const ngraph_error& error)
{
......@@ -111,7 +111,7 @@ void test_binary_bad_arguments_views(const shared_ptr<Node>& node)
try
{
node->propagate_types();
FAIL() << "Tuple argument to add not detected.";
FAIL() << "incompatible view argumenta not detected.";
}
catch (const ngraph_error& error)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment