From 4a7f2ddc6decb8f53a9a548977f56c88661e7a8d Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Wed, 25 Nov 2020 00:41:26 +0000 Subject: [PATCH] Properly print sources in ASTJSONTest --- test/libsolidity/ASTJSONTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/libsolidity/ASTJSONTest.cpp b/test/libsolidity/ASTJSONTest.cpp index 6258c9e59..8e93fe9f2 100644 --- a/test/libsolidity/ASTJSONTest.cpp +++ b/test/libsolidity/ASTJSONTest.cpp @@ -281,7 +281,7 @@ void ASTJSONTest::printSource(ostream& _stream, string const& _linePrefix, bool for (auto const& source: m_sources) { if (m_sources.size() > 1 || source.first != "a") - _stream << _linePrefix << sourceDelimiter << source.first << endl << endl; + _stream << _linePrefix << sourceDelimiter << source.first << " ====" << endl << endl; stringstream stream(source.second); string line; while (getline(stream, line))