Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
EcomDev_PHPUnit
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Open
EcomDev_PHPUnit
Commits
35c08fbf
Commit
35c08fbf
authored
May 11, 2017
by
Ivan Chepurnyi
Committed by
GitHub
May 11, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #283 from colinmollenhour/dev
Fix default value for 'attribute_set_id'.
parents
7ecc5276
df54041a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
app/code/community/EcomDev/PHPUnit/Model/Fixture/Processor/Tables.php
...munity/EcomDev/PHPUnit/Model/Fixture/Processor/Tables.php
+1
-1
app/code/community/EcomDev/PHPUnit/Model/Mysql4/Fixture/AbstractEav.php
...nity/EcomDev/PHPUnit/Model/Mysql4/Fixture/AbstractEav.php
+1
-1
No files found.
app/code/community/EcomDev/PHPUnit/Model/Fixture/Processor/Tables.php
View file @
35c08fbf
...
...
@@ -107,7 +107,7 @@ class EcomDev_PHPUnit_Model_Fixture_Processor_Tables
$this
->
getResource
()
->
cleanTable
(
$tableEntity
);
}
foreach
(
array_keys
(
$data
)
as
$tableEntity
)
{
if
(
isset
(
$restoreTableData
[
$tableEntity
]))
{
if
(
!
empty
(
$restoreTableData
[
$tableEntity
]))
{
$this
->
getResource
()
->
loadTableData
(
$tableEntity
,
$restoreTableData
[
$tableEntity
]);
}
}
...
...
app/code/community/EcomDev/PHPUnit/Model/Mysql4/Fixture/AbstractEav.php
View file @
35c08fbf
...
...
@@ -255,7 +255,7 @@ abstract class EcomDev_PHPUnit_Model_Mysql4_Fixture_AbstractEav
$defaultAttributeSet
=
0
;
}
$
values
[
$index
]
[
'attribute_set_id'
]
=
$defaultAttributeSet
;
$
row
[
'attribute_set_id'
]
=
$defaultAttributeSet
;
}
// Preparing entity table record
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment