diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/tools/isoltest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tools/isoltest.cpp b/test/tools/isoltest.cpp index 7a147bd0..100fcbf0 100644 --- a/test/tools/isoltest.cpp +++ b/test/tools/isoltest.cpp @@ -99,8 +99,8 @@ void SyntaxTestTool::printContract() const for (auto const& error: m_test->errorList()) if (error.locationStart >= 0 && error.locationEnd >= 0) { - assert(static_cast<size_t>(error.locationStart) < source.length()); - assert(static_cast<size_t>(error.locationEnd) < source.length()); + assert(static_cast<size_t>(error.locationStart) <= source.length()); + assert(static_cast<size_t>(error.locationEnd) <= source.length()); bool isWarning = error.type == "Warning"; for (int i = error.locationStart; i < error.locationEnd; i++) if (isWarning) |