@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | $this |
39 | 39 | ->assert('test path existence on mainAdapter') |
40 | 40 | ->given($this->calling($mainAdapter)->has = true, |
41 | - $this->calling($readOnlyAdapter)->has = false) |
|
41 | + $this->calling($readOnlyAdapter)->has = false) |
|
42 | 42 | ->then |
43 | 43 | ->boolean($this->testedInstance->has('/foo'))->isTrue |
44 | 44 | ->mock($mainAdapter)->receive('has')->withIdenticalArguments('/foo')->once |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | $this |
49 | 49 | ->assert('test none existing path') |
50 | 50 | ->given($this->calling($mainAdapter)->has = false, |
51 | - $this->calling($readOnlyAdapter)->has = false) |
|
51 | + $this->calling($readOnlyAdapter)->has = false) |
|
52 | 52 | ->then |
53 | 53 | ->boolean($this->testedInstance->has('/foo'))->isFalse |
54 | 54 | ->mock($mainAdapter)->receive('has')->withIdenticalArguments('/foo')->once |