mirror of
https://github.com/catchorg/Catch2.git
synced 2025-08-01 21:05:39 +02:00
Fix for GitHub Issue #66
SECTIONs distinguished by name as well as file/ line
This commit is contained in:
@@ -487,7 +487,7 @@ namespace Catch
|
||||
)
|
||||
{
|
||||
std::ostringstream oss;
|
||||
oss << filename << ":" << line;
|
||||
oss << name << "@" << filename << ":" << line;
|
||||
|
||||
if( !m_runningTest->addSection( oss.str() ) )
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user