You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_errorReporter.warning("The function \"" + m_call.signature + "\" is not known to the compiler.");
154
197
198
+
if (m_consumedLogs.size() != m_rawLogs.size())
199
+
{
200
+
stringstream str;
201
+
str << "The function \"" << m_call.signature << "\" produced " << m_rawLogs.size() <<" log(s), but only " << m_consumedLogs.size() << " log(s) where consumed.";
202
+
_errorReporter.error(str.str());
203
+
}
204
+
155
205
if (builtin)
156
206
_errorReporter.warning("The expectation \"" + builtin->signature + ": " + formatRawParameters(builtin->arguments.parameters) + "\" will be replaced with the actual value returned by the test.");
0 commit comments