summaryrefslogtreecommitdiff
path: root/spec/javascripts/ide
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2018-04-19 15:51:43 +0100
committerPhil Hughes <me@iamphill.com>2018-04-19 15:51:43 +0100
commitca3f7cf0e3e41206e2f557c49b5bf26d4b9cad0f (patch)
tree900ff4c0bf9b843b65da9bf231d3a70d36bd9b62 /spec/javascripts/ide
parent8e0d073b369ecabe7dabc75bda76b795b2d28931 (diff)
downloadgitlab-ce-ca3f7cf0e3e41206e2f557c49b5bf26d4b9cad0f.tar.gz
added line height to label in modal
fixed spec because of object key change
Diffstat (limited to 'spec/javascripts/ide')
-rw-r--r--spec/javascripts/ide/stores/actions_spec.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/javascripts/ide/stores/actions_spec.js b/spec/javascripts/ide/stores/actions_spec.js
index d8ebd1019ed..f307e6c4d22 100644
--- a/spec/javascripts/ide/stores/actions_spec.js
+++ b/spec/javascripts/ide/stores/actions_spec.js
@@ -352,7 +352,7 @@ describe('Multi-file store actions', () => {
testAction(
actions.updateTempFlagForEntry,
- { entry: f, tempFile: false },
+ { file: f, tempFile: false },
store.state,
[{ type: 'UPDATE_TEMP_FLAG', payload: { path: f.path, tempFile: false } }],
[],
@@ -375,10 +375,10 @@ describe('Multi-file store actions', () => {
testAction(
actions.updateTempFlagForEntry,
- { entry: f, tempFile: false },
+ { file: f, tempFile: false },
store.state,
[{ type: 'UPDATE_TEMP_FLAG', payload: { path: f.path, tempFile: false } }],
- [{ type: 'updateTempFlagForEntry', payload: { entry: parent, tempFile: false } }],
+ [{ type: 'updateTempFlagForEntry', payload: { file: parent, tempFile: false } }],
done,
);
});