Skip to content

Commit d530fd7

Browse files
committed
fix
1 parent 72dc2b7 commit d530fd7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/CxxTestingGuide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ using namespace Passenger;
1818
namespace tut {
1919
// Each test suite has a corresponding context struct, created and
2020
// deleted for every test case. You can put test case-local state here.
21-
struct SomethingTest final: public TestBase {
21+
struct SomethingTest: public TestBase {
2222
Something something;
2323
};
2424

test/cxx/Core/SpawningKit/HandshakePerformTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ using namespace Passenger;
1212
using namespace Passenger::SpawningKit;
1313

1414
namespace tut {
15-
struct Core_SpawningKit_HandshakePerformTest final: public TestBase {
15+
struct Core_SpawningKit_HandshakePerformTest: public TestBase {
1616
WrapperRegistry::Registry wrapperRegistry;
1717
SpawningKit::Context::Schema schema;
1818
SpawningKit::Context context;

0 commit comments

Comments
 (0)