Skip to content

Commit 1b0751f

Browse files
committed
fix case error
1 parent 3336281 commit 1b0751f

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ matrix:
1717
include:
1818
- php: 5.3
1919
env: PACKAGE_VERSION=low
20+
allow_failures:
21+
- php: 7.0
22+
- php: 7.1
2023

2124
before_script:
2225
- composer selfupdate

tests/PHPCR/Tests/Util/ValueConverterTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function dataConversionMatrix()
5252
;
5353
$nodemock
5454
->expects($this->any())
55-
->method('isNodetype')
55+
->method('isNodeType')
5656
->with('mix:referenceable')
5757
->will($this->returnValue(true))
5858
;
@@ -406,7 +406,7 @@ public function testConvertNonrefNode()
406406
;
407407
$nodemock
408408
->expects($this->once())
409-
->method('isNodetype')
409+
->method('isNodeType')
410410
->with('mix:referenceable')
411411
->will($this->returnValue(false))
412412
;

0 commit comments

Comments
 (0)