Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into fix/annotaion_input
Browse files Browse the repository at this point in the history
  • Loading branch information
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/Node/OfflineTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -387,9 +387,9 @@ public function testGetChangedData()
public function testDeleteUnusedAttribute()
{
$node = $this->createTestNode();
$node->deleteAttribute('nonexistant');
$node->deleteAttribute('nonexistent');
$changedData = $node->getChangedData();
$this->assertArrayNotHasKey('nonexistant', $changedData);
$this->assertArrayNotHasKey('nonexistent', $changedData);
}

public function testRenameNodeString()
Expand Down
2 changes: 1 addition & 1 deletion test/Node/OnlineTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ public function testGetParent()
/**
* @expectedException Zend\Ldap\Exception\ExceptionInterface
*/
public function testGetNonexistantParent()
public function testGetNonexistentParent()
{
$node = $this->getLDAP()->getNode(TESTS_ZEND_LDAP_WRITEABLE_SUBTREE);
$pnode = $node->getParent();
Expand Down

0 comments on commit b991bc1

Please sign in to comment.