Skip to content

Commit 967c3fc

Browse files
committed
Fix Typos
1 parent bf5f2cd commit 967c3fc

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

tests/AqlUserFunctionTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ private function filter($list)
6666
/**
6767
* Test if AqlUserFunctions can be registered, listed and unregistered
6868
*/
69-
public function testRegisterListAndUnregisterAqlUserFunctionWithInitialConfig()
69+
public function testRegisterListAndUnRegisterAqlUserFunctionWithInitialConfig()
7070
{
7171
$name = 'phpTestFunctions::myFunction';
7272
$code = 'function (celsius) { return celsius * 1.8 + 32; }';
@@ -102,7 +102,7 @@ public function testRegisterListAndUnregisterAqlUserFunctionWithInitialConfig()
102102
/**
103103
* Test if AqlUserFunctions can be registered, listed and unregistered using the register() shortcut method
104104
*/
105-
public function testRegisterListAndUnregisterAqlUserFunctionUsingShortcut()
105+
public function testRegisterListAndUnRegisterAqlUserFunctionUsingShortcut()
106106
{
107107

108108
$name = 'phpTestFunctions::myFunction';
@@ -204,7 +204,7 @@ public function testRegisterListAndUnRegisterAqlUserFunctionWithGettersAndSetter
204204
/**
205205
* Test if AqlUserFunctions can be registered, listed and unregistered
206206
*/
207-
public function testRegisterListAndUnregisterAqlUserFunctionWithWithMagicSettersAndGetters()
207+
public function testRegisterListAndUnRegisterAqlUserFunctionWithWithMagicSettersAndGetters()
208208
{
209209

210210
$name = 'phpTestFunctions::myFunction';
@@ -248,7 +248,7 @@ public function testRegisterListAndUnregisterAqlUserFunctionWithWithMagicSetters
248248
* Test if AqlUserFunctions can be registered, listed and unregistered
249249
*
250250
*/
251-
public function testReRegisterListAndUnregisterAqlUserFunctionTwice()
251+
public function testReRegisterListAndUnRegisterAqlUserFunctionTwice()
252252
{
253253

254254
$name = 'phpTestFunctions::myFunction';

tests/BatchTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function setUp()
2929
try {
3030
$this->collectionHandler->drop('ArangoDB_PHP_TestSuite_TestCollection_01');
3131
} catch (\Exception $e) {
32-
// don't bother us, if it's already dropd.
32+
// don't bother us, if it's already dropped.
3333
}
3434

3535
$this->collection = new Collection();
@@ -39,7 +39,7 @@ public function setUp()
3939
try {
4040
$this->collectionHandler->drop('ArangoDBPHPTestSuiteTestEdgeCollection01');
4141
} catch (\Exception $e) {
42-
#don't bother us, if it's already dropd.
42+
//don't bother us, if it's already dropped.
4343
}
4444

4545
$this->edgeCollection = new Collection();
@@ -436,17 +436,17 @@ public function tearDown()
436436
try {
437437
$this->collectionHandler->drop('ArangoDB_PHP_TestSuite_TestCollection_01');
438438
} catch (\Exception $e) {
439-
// don't bother us, if it's already dropd.
439+
// don't bother us, if it's already dropped.
440440
}
441441
try {
442442
$this->collectionHandler->drop('ArangoDB_PHP_TestSuite_TestCollection_02');
443443
} catch (\Exception $e) {
444-
// don't bother us, if it's already dropd.
444+
// don't bother us, if it's already dropped.
445445
}
446446
try {
447447
$this->collectionHandler->drop('ArangoDBPHPTestSuiteTestEdgeCollection01');
448448
} catch (\Exception $e) {
449-
#don't bother us, if it's already dropd.
449+
//don't bother us, if it's already dropped.
450450
}
451451

452452
unset($this->collectionHandlerm, $this->collection, $this->connection);

0 commit comments

Comments
 (0)