mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fix test build warning
This commit is contained in:
parent
6082d0dd2f
commit
5258f19004
@ -35,9 +35,9 @@ TEST( FixedWidthDataParser, BasicUsage )
|
||||
std::getline( streamData, line );
|
||||
|
||||
std::string firstDataLine = "6-NOV-1997";
|
||||
line.find_first_of( firstDataLine );
|
||||
size_t foundPos = line.find_first_of( firstDataLine );
|
||||
|
||||
EXPECT_TRUE( line.find_first_of( firstDataLine ) != std::string::npos );
|
||||
EXPECT_TRUE( foundPos != std::string::npos );
|
||||
}
|
||||
|
||||
auto colHeaders = RifEclipseUserDataParserTools::splitIntoColumnHeaders( tableHeaderLines );
|
||||
|
Loading…
Reference in New Issue
Block a user