@@ -63,7 +63,7 @@ public function testGetItem(): void
6363 $ spans = $ transaction ->getSpanRecorder ()->getSpans ();
6464
6565 $ this ->assertCount (2 , $ spans );
66- $ this ->assertSame ('cache.get_item ' , $ spans [1 ]->getOp ());
66+ $ this ->assertSame ('cache.get ' , $ spans [1 ]->getOp ());
6767 $ this ->assertSame ('foo ' , $ spans [1 ]->getDescription ());
6868 $ this ->assertNotNull ($ spans [1 ]->getEndTimestamp ());
6969 }
@@ -92,7 +92,7 @@ public function testGetItems(): void
9292 $ spans = $ transaction ->getSpanRecorder ()->getSpans ();
9393
9494 $ this ->assertCount (2 , $ spans );
95- $ this ->assertSame ('cache.get_items ' , $ spans [1 ]->getOp ());
95+ $ this ->assertSame ('cache.get ' , $ spans [1 ]->getOp ());
9696 $ this ->assertNotNull ($ spans [1 ]->getEndTimestamp ());
9797 }
9898
@@ -119,7 +119,7 @@ public function testClear(): void
119119 $ spans = $ transaction ->getSpanRecorder ()->getSpans ();
120120
121121 $ this ->assertCount (2 , $ spans );
122- $ this ->assertSame ('cache.clear ' , $ spans [1 ]->getOp ());
122+ $ this ->assertSame ('cache.flush ' , $ spans [1 ]->getOp ());
123123 $ this ->assertSame ('foo ' , $ spans [1 ]->getDescription ());
124124 $ this ->assertNotNull ($ spans [1 ]->getEndTimestamp ());
125125 }
@@ -189,7 +189,7 @@ public function testDelete(): void
189189 $ spans = $ transaction ->getSpanRecorder ()->getSpans ();
190190
191191 $ this ->assertCount (2 , $ spans );
192- $ this ->assertSame ('cache.delete ' , $ spans [1 ]->getOp ());
192+ $ this ->assertSame ('cache.remove ' , $ spans [1 ]->getOp ());
193193 $ this ->assertSame ('foo ' , $ spans [1 ]->getDescription ());
194194 $ this ->assertNotNull ($ spans [1 ]->getEndTimestamp ());
195195 }
@@ -255,7 +255,7 @@ public function testDeleteItem(): void
255255 $ spans = $ transaction ->getSpanRecorder ()->getSpans ();
256256
257257 $ this ->assertCount (2 , $ spans );
258- $ this ->assertSame ('cache.delete_item ' , $ spans [1 ]->getOp ());
258+ $ this ->assertSame ('cache.remove ' , $ spans [1 ]->getOp ());
259259 $ this ->assertSame ('foo ' , $ spans [1 ]->getDescription ());
260260 $ this ->assertNotNull ($ spans [1 ]->getEndTimestamp ());
261261 }
@@ -283,7 +283,7 @@ public function testDeleteItems(): void
283283 $ spans = $ transaction ->getSpanRecorder ()->getSpans ();
284284
285285 $ this ->assertCount (2 , $ spans );
286- $ this ->assertSame ('cache.delete_items ' , $ spans [1 ]->getOp ());
286+ $ this ->assertSame ('cache.remove ' , $ spans [1 ]->getOp ());
287287 $ this ->assertNotNull ($ spans [1 ]->getEndTimestamp ());
288288 }
289289
@@ -311,7 +311,7 @@ public function testSave(): void
311311 $ spans = $ transaction ->getSpanRecorder ()->getSpans ();
312312
313313 $ this ->assertCount (2 , $ spans );
314- $ this ->assertSame ('cache.save ' , $ spans [1 ]->getOp ());
314+ $ this ->assertSame ('cache.put ' , $ spans [1 ]->getOp ());
315315 $ this ->assertNotNull ($ spans [1 ]->getEndTimestamp ());
316316 }
317317
@@ -339,7 +339,7 @@ public function testSaveDeferred(): void
339339 $ spans = $ transaction ->getSpanRecorder ()->getSpans ();
340340
341341 $ this ->assertCount (2 , $ spans );
342- $ this ->assertSame ('cache.save_deferred ' , $ spans [1 ]->getOp ());
342+ $ this ->assertSame ('cache.put ' , $ spans [1 ]->getOp ());
343343 $ this ->assertNotNull ($ spans [1 ]->getEndTimestamp ());
344344 }
345345
0 commit comments