Use "test suite" rather than "test case" in error about mixing TEST and TEST_F

This commit is contained in:
Mathias Stearn 2025-08-27 16:44:57 +02:00 committed by GitHub
parent eb2d85edd0
commit 50d8a7b7fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2600,7 +2600,7 @@ bool Test::HasSameFixtureClass() {
<< "test " << TEST_F_name << " is defined using TEST_F but\n" << "test " << TEST_F_name << " is defined using TEST_F but\n"
<< "test " << TEST_name << " is defined using TEST. You probably\n" << "test " << TEST_name << " is defined using TEST. You probably\n"
<< "want to change the TEST to TEST_F or move it to another test\n" << "want to change the TEST to TEST_F or move it to another test\n"
<< "case."; << "suite.";
} else { } else {
// Two fixture classes with the same name appear in two different // Two fixture classes with the same name appear in two different
// namespaces, which is not allowed. Tell the user how to fix this. // namespaces, which is not allowed. Tell the user how to fix this.