Skip to content

Commit ea32f1d

Browse files
author
Cari Spruiell
committed
MAGETWO-36514: Fix builds
- fix misspellings of overridden in tests to prevent static test failures
1 parent 912c613 commit ea32f1d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

app/code/Magento/Quote/Test/Unit/Model/Webapi/ParamOverriderCartIdTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function setUp()
4242
);
4343
}
4444

45-
public function testGetOverridenValueIsCustomerAndCartExists()
45+
public function testGetOverriddenValueIsCustomerAndCartExists()
4646
{
4747
$retValue = 'retValue';
4848
$customerId = 1;
@@ -67,7 +67,7 @@ public function testGetOverridenValueIsCustomerAndCartExists()
6767
$this->assertSame($retValue, $this->model->getOverriddenValue());
6868
}
6969

70-
public function testGetOverridenValueIsCustomerAndCartDoesNotExist()
70+
public function testGetOverriddenValueIsCustomerAndCartDoesNotExist()
7171
{
7272
$customerId = 1;
7373

@@ -86,7 +86,7 @@ public function testGetOverridenValueIsCustomerAndCartDoesNotExist()
8686
$this->assertNull($this->model->getOverriddenValue());
8787
}
8888

89-
public function testGetOverridenValueIsCustomerAndCartIsNull()
89+
public function testGetOverriddenValueIsCustomerAndCartIsNull()
9090
{
9191
$customerId = 1;
9292

@@ -105,7 +105,7 @@ public function testGetOverridenValueIsCustomerAndCartIsNull()
105105
$this->assertNull($this->model->getOverriddenValue());
106106
}
107107

108-
public function testGetOverridenValueIsNotCustomer()
108+
public function testGetOverriddenValueIsNotCustomer()
109109
{
110110
$this->userContext->expects($this->once())
111111
->method('getUserType')

app/code/Magento/Webapi/Test/Unit/Controller/Rest/ParamOverriderCustomerIdTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function setUp()
3434
);
3535
}
3636

37-
public function testGetOverridenValueIsCustomer()
37+
public function testGetOverriddenValueIsCustomer()
3838
{
3939
$retValue = 'retValue';
4040

@@ -48,7 +48,7 @@ public function testGetOverridenValueIsCustomer()
4848
$this->assertSame($retValue, $this->model->getOverriddenValue());
4949
}
5050

51-
public function testGetOverridenValueIsNotCustomer()
51+
public function testGetOverriddenValueIsNotCustomer()
5252
{
5353
$this->userContext->expects($this->once())
5454
->method('getUserType')

0 commit comments

Comments
 (0)