@@ -79,15 +79,15 @@ class TestEventLoggingNoUTCTime : public chip::Test::AppContext
79
79
// Performs shared setup for all tests in the test suite
80
80
static void SetUpTestSuite ()
81
81
{
82
- chip::Test:: AppContext::SetUpTestSuite ();
82
+ AppContext::SetUpTestSuite ();
83
83
sClock .Emplace (chip::System::SystemClock ());
84
84
}
85
85
86
86
// Performs shared teardown for all tests in the test suite
87
87
static void TearDownTestSuite ()
88
88
{
89
89
sClock .ClearValue ();
90
- chip::Test:: AppContext::TearDownTestSuite ();
90
+ AppContext::TearDownTestSuite ();
91
91
}
92
92
93
93
// Performs setup for each individual test in the test suite
@@ -99,7 +99,7 @@ class TestEventLoggingNoUTCTime : public chip::Test::AppContext
99
99
{ &gCritEventBuffer [0 ], sizeof (gCritEventBuffer ), chip::app::PriorityLevel::Critical },
100
100
};
101
101
102
- chip::Test:: AppContext::SetUp ();
102
+ AppContext::SetUp ();
103
103
ASSERT_EQ (mEventCounter .Init (0 ), CHIP_NO_ERROR);
104
104
chip::app::EventManagement::CreateEventManagement (&GetExchangeManager (), ArraySize (logStorageResources),
105
105
gCircularEventBuffer , logStorageResources, &mEventCounter );
@@ -109,7 +109,7 @@ class TestEventLoggingNoUTCTime : public chip::Test::AppContext
109
109
void TearDown () override
110
110
{
111
111
chip::app::EventManagement::DestroyEventManagement ();
112
- chip::Test:: AppContext::TearDown ();
112
+ AppContext::TearDown ();
113
113
}
114
114
115
115
private:
0 commit comments