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:
Diffstat (limited to 'spec/components/pajamas/empty_state_component_spec.rb')
-rw-r--r--spec/components/pajamas/empty_state_component_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/components/pajamas/empty_state_component_spec.rb b/spec/components/pajamas/empty_state_component_spec.rb
index 5aa3f2143c3..852e73777df 100644
--- a/spec/components/pajamas/empty_state_component_spec.rb
+++ b/spec/components/pajamas/empty_state_component_spec.rb
@@ -54,7 +54,7 @@ RSpec.describe Pajamas::EmptyStateComponent, type: :component, feature_category:
it 'renders section with flex direction column' do
expect(find_section[:id]).to eq(empty_state_options[:id])
- expect(find_section[:class]).to eq("gl-display-flex empty-state gl-text-center gl-flex-direction-column")
+ expect(find_section[:class]).to eq("gl-display-flex gl-empty-state gl-text-center gl-flex-direction-column")
end
end
@@ -62,7 +62,7 @@ RSpec.describe Pajamas::EmptyStateComponent, type: :component, feature_category:
let(:compact) { true }
it 'renders section with flex direction row' do
- expect(find_section[:class]).to eq("gl-display-flex empty-state gl-flex-direction-row gl-align-items-center")
+ expect(find_section[:class]).to eq("gl-display-flex gl-empty-state gl-flex-direction-row")
end
end