We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a6bc65 commit b972c9aCopy full SHA for b972c9a
lib/internal/Magento/Framework/App/Test/Unit/View/Deployment/VersionTest.php
@@ -80,7 +80,7 @@ public function testGetValueDefaultModeSaving()
80
->expects($this->once())
81
->method('load')
82
->will($this->throwException($storageException));
83
- $this->versionStorage->expects($this->once())->method('save')->with(time());
+ $this->versionStorage->expects($this->once())->method('save')->with($this->equalTo(time(), 5));
84
$this->assertEquals(time(), $this->object->getValue());
85
$this->object->getValue(); // Ensure caching in memory
86
}
0 commit comments