diff options
author | Winnie Hellmann <winnie@gitlab.com> | 2019-03-21 07:44:05 +0100 |
---|---|---|
committer | Winnie Hellmann <winnie@gitlab.com> | 2019-03-21 17:16:53 +0100 |
commit | 3e9bb4ad314955c6d33db5d2f7dc8bab1df4e85f (patch) | |
tree | 287afeb69ab6c958413fee232185ec8fffadc2b0 /spec/javascripts/blob/notebook/index_spec.js | |
parent | d2c01153a882b1f3d5ad5dc3e1218741bfabceb5 (diff) | |
download | gitlab-ce-3e9bb4ad314955c6d33db5d2f7dc8bab1df4e85f.tar.gz |
Remove .raw from JavaScript fixture file names
There is nothing more to say but
"Commits that change 30 or more lines across at least three files
must describe these changes in the commit body"
Diffstat (limited to 'spec/javascripts/blob/notebook/index_spec.js')
-rw-r--r-- | spec/javascripts/blob/notebook/index_spec.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/javascripts/blob/notebook/index_spec.js b/spec/javascripts/blob/notebook/index_spec.js index 28d3b2f5ea3..6bb5bac007f 100644 --- a/spec/javascripts/blob/notebook/index_spec.js +++ b/spec/javascripts/blob/notebook/index_spec.js @@ -3,10 +3,10 @@ import axios from '~/lib/utils/axios_utils'; import renderNotebook from '~/blob/notebook'; describe('iPython notebook renderer', () => { - preloadFixtures('static/notebook_viewer.html.raw'); + preloadFixtures('static/notebook_viewer.html'); beforeEach(() => { - loadFixtures('static/notebook_viewer.html.raw'); + loadFixtures('static/notebook_viewer.html'); }); it('shows loading icon', () => { |