QA test: fix a missing change related to commit 2ca16c0.

This commit is contained in:
jean-pierre charras 2020-02-17 08:10:04 +01:00
parent 2ca16c0b29
commit fb19d83b69
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ struct print_log_value<LIB_FIELD>
{
inline void operator()( std::ostream& os, LIB_FIELD const& f )
{
os << "LIB_FIELD[ " << f.GetName() << " ]";
os << "LIB_FIELD[ " << f.GetName( NATIVE_FIELD_NAME ) << " ]";
}
};