Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean McGivern <sean@gitlab.com>2019-03-22 15:04:03 +0300
committerSean McGivern <sean@gitlab.com>2019-03-22 15:04:03 +0300
commit14fcf085f7519c7d61e22f288d69031c4001d0b7 (patch)
treeb8a768fa30857f32ae8f58cc3f0bcd928110e4e4 /spec/support
parent322c14be63dd8eeab59a98aca6bb9b52642b377c (diff)
parent022968764ced43c5de0c3291cfe2fbc7b068e944 (diff)
Merge branch 'revert-79a45f7f' into 'master'
Revert "Merge branch 'winh-remove-sushi' into 'master'" See merge request gitlab-org/gitlab-ce!26470
Diffstat (limited to 'spec/support')
-rw-r--r--spec/support/helpers/javascript_fixtures_helpers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/helpers/javascript_fixtures_helpers.rb b/spec/support/helpers/javascript_fixtures_helpers.rb
index 9cae8f934db..cceb179d53e 100644
--- a/spec/support/helpers/javascript_fixtures_helpers.rb
+++ b/spec/support/helpers/javascript_fixtures_helpers.rb
@@ -24,7 +24,7 @@ module JavaScriptFixturesHelpers
#
def clean_frontend_fixtures(directory_name)
full_directory_name = File.expand_path(directory_name, fixture_root_path)
- Dir[File.expand_path('*.html', full_directory_name)].each do |file_name|
+ Dir[File.expand_path('*.html.raw', full_directory_name)].each do |file_name|
FileUtils.rm(file_name)
end
end