mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-25 10:10:19 -06:00
Fixed jasmine test case failure.
This commit is contained in:
parent
a562e73d34
commit
e987b3074d
@ -97,6 +97,9 @@ describe('#enableTriggers', () => {
|
|||||||
return [200, {
|
return [200, {
|
||||||
success: 1,
|
success: 1,
|
||||||
info: 'some information',
|
info: 'some information',
|
||||||
|
data: {
|
||||||
|
has_enable_triggers: '1'
|
||||||
|
}
|
||||||
}];
|
}];
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@ -226,6 +229,9 @@ describe('#disableTriggers', () => {
|
|||||||
return [200, {
|
return [200, {
|
||||||
success: 1,
|
success: 1,
|
||||||
info: 'some information',
|
info: 'some information',
|
||||||
|
data: {
|
||||||
|
has_enable_triggers: '0'
|
||||||
|
}
|
||||||
}];
|
}];
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user