mirror of
https://github.com/catchorg/Catch2.git
synced 2025-05-25 14:09:26 +00:00
Fix for GitHub Issue #66
SECTIONs distinguished by name as well as file/ line
This commit is contained in:
parent
07ff5f39fd
commit
7c94aef660
1 changed files with 1 additions and 1 deletions
|
@ -487,7 +487,7 @@ namespace Catch
|
|||
)
|
||||
{
|
||||
std::ostringstream oss;
|
||||
oss << filename << ":" << line;
|
||||
oss << name << "@" << filename << ":" << line;
|
||||
|
||||
if( !m_runningTest->addSection( oss.str() ) )
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue