@@ -38,14 +38,14 @@ describe('deployResultFormatter', () => {
38
38
expect ( tableStub . firstCall . args [ 0 ] ) . to . deep . equal ( {
39
39
data : [
40
40
{
41
- problemType : 'Error ' ,
41
+ type : 'ApexClass ' ,
42
42
fullName : 'ProductController' ,
43
43
error : 'This component has some problems' ,
44
44
loc : '27:18' ,
45
45
} ,
46
46
] ,
47
47
columns : [
48
- { key : 'problemType ' , name : 'Type' } ,
48
+ { key : 'type ' , name : 'Type' } ,
49
49
{ key : 'fullName' , name : 'Name' } ,
50
50
{ key : 'error' , name : 'Problem' } ,
51
51
{ key : 'loc' , name : 'Line:Column' } ,
@@ -106,21 +106,21 @@ describe('deployResultFormatter', () => {
106
106
expect ( tableStub . firstCall . args [ 0 ] ) . to . deep . equal ( {
107
107
data : [
108
108
{
109
- problemType : 'Error ' ,
109
+ type : '' ,
110
110
fullName : 'Create_property' ,
111
111
error :
112
112
"An object 'Create_property' of type Flow was named in package.xml, but was not found in zipped directory" ,
113
113
loc : '' ,
114
114
} ,
115
115
{
116
- problemType : 'Error ' ,
116
+ type : 'ApexClass ' ,
117
117
fullName : 'ProductController' ,
118
118
error : 'This component has some problems' ,
119
119
loc : '27:18' ,
120
120
} ,
121
121
] ,
122
122
columns : [
123
- { key : 'problemType ' , name : 'Type' } ,
123
+ { key : 'type ' , name : 'Type' } ,
124
124
{ key : 'fullName' , name : 'Name' } ,
125
125
{ key : 'error' , name : 'Problem' } ,
126
126
{ key : 'loc' , name : 'Line:Column' } ,
0 commit comments