From dd4f270b11d472f3c13e54c43882f10e95d890d7 Mon Sep 17 00:00:00 2001
From: Michael <heluecht@pirati.ca>
Date: Tue, 27 Jul 2021 06:35:44 +0000
Subject: [PATCH] And again

---
 tests/src/Util/ProfilerTest.php | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/tests/src/Util/ProfilerTest.php b/tests/src/Util/ProfilerTest.php
index 6847e63f3d..da0546d1be 100644
--- a/tests/src/Util/ProfilerTest.php
+++ b/tests/src/Util/ProfilerTest.php
@@ -250,12 +250,11 @@ class ProfilerTest extends MockedTest
 		            ->once();
 
 		$profiler = new Profiler($configCache);
-		$profiler->startRecording('network');
 
 		self::assertFalse($profiler->isRendertime());
 		self::assertEmpty($profiler->getRendertimeString());
 
-		$profiler->stopRecording('test1');
+		$profiler->saveTimestamp(time(), 'network', 'test1');
 
 		$config = \Mockery::mock(IConfig::class);
 		$config->shouldReceive('get')
@@ -283,8 +282,7 @@ class ProfilerTest extends MockedTest
 
 		$profiler->update($config);
 
-		$profiler->startRecording('database');
-		$profiler->stopRecording('test2');
+		$profiler->saveTimestamp(time(), 'database', 'test2');
 
 		self::assertTrue($profiler->isRendertime());
 		$output = $profiler->getRendertimeString();