From 1f82d736ecceb5639b07f34dec77b534c47c1727 Mon Sep 17 00:00:00 2001 From: Myron Marston Date: Mon, 30 Dec 2024 11:08:56 -0800 Subject: [PATCH] Fix typo: remove extra "packaged". --- elasticgraph/spec/unit/elastic_graph/gem_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elasticgraph/spec/unit/elastic_graph/gem_spec.rb b/elasticgraph/spec/unit/elastic_graph/gem_spec.rb index e54fadc4..ed48f285 100644 --- a/elasticgraph/spec/unit/elastic_graph/gem_spec.rb +++ b/elasticgraph/spec/unit/elastic_graph/gem_spec.rb @@ -28,7 +28,7 @@ module ElasticGraph expect(gemspec.name).to eq gem_name end - it "has no symlinked files included in the gem since they do not work correctly when the gem is packaged packaged" do + it "has no symlinked files included in the gem since they do not work correctly when the gem is packaged" do symlink_files = gemspec.files.select { |f| ::File.exist?(f) && ::File.ftype(f) == "link" } expect(symlink_files).to be_empty end