Skip to content

Commit 24014d6

Browse files
author
Teakowa
committed
fix spelling mistake
Correct `packahe` to `package` in test/BaseTester.php
1 parent 33121c4 commit 24014d6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/BaseTester.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,15 +148,15 @@ private function checkNestedAppProperties($app)
148148
}
149149

150150
/**
151-
* @param $packahe
151+
* @param $package
152152
*/
153-
private function checkNestedPackageProperties($packahe)
153+
private function checkNestedPackageProperties($package)
154154
{
155155
$attributes = ['currency', 'initial', 'final', 'discount_percent', 'individual'];
156-
$this->assertObjectHasAttributes($attributes, $packahe->price);
156+
$this->assertObjectHasAttributes($attributes, $package->price);
157157

158158
$attributes = ['windows', 'mac', 'linux'];
159-
$this->assertObjectHasAttributes($attributes, $packahe->platforms);
159+
$this->assertObjectHasAttributes($attributes, $package->platforms);
160160
}
161161

162162
/**

0 commit comments

Comments
 (0)