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 721c5a9 commit 8795e1dCopy full SHA for 8795e1d
tests/Reader/DefaultReaderTest.php
@@ -84,13 +84,13 @@ public function testClose(): void
84
self::expectException(Throwable::class);
85
self::expectExceptionMessage('Data must be loaded before reading');
86
87
- $reader = $this->newReader(self::getTestFilePath('sample.xml'));
+ $reader = $this->newReader(self::getTestFilePath('sample_04.xml'));
88
89
- self::assertNotNull($reader->nextNode('/feed/entry'));
+ self::assertNotNull($reader->nextNode('item'));
90
91
$reader->close();
92
93
94
}
95
96
public function testPreviousNode(): void
0 commit comments