diff options
author | Phil Hughes <me@iamphill.com> | 2018-01-25 11:35:57 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2018-02-07 09:10:05 +0000 |
commit | f3f855846850483c8a0fdfb6041d24ad086d5188 (patch) | |
tree | f248d0e7deeaeb0ca9f47715d22c1a5388620756 | |
parent | eaa2197018f0ac7760524920fa0c5c206cd42481 (diff) | |
download | gitlab-ce-f3f855846850483c8a0fdfb6041d24ad086d5188.tar.gz |
fix for spec failures
-rw-r--r-- | spec/javascripts/repo/stores/actions/file_spec.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/javascripts/repo/stores/actions/file_spec.js b/spec/javascripts/repo/stores/actions/file_spec.js index 419844bb5b4..d0339b94c48 100644 --- a/spec/javascripts/repo/stores/actions/file_spec.js +++ b/spec/javascripts/repo/stores/actions/file_spec.js @@ -169,7 +169,7 @@ describe('Multi-file store file actions', () => { }), })); - localFile = file('newCreate'); + localFile = file(`newCreate-${Math.random()}`); localFile.url = 'getFileDataURL'; }); |