From 9967bef8db3a083a094ed8630d4d856070b5b3d3 Mon Sep 17 00:00:00 2001 From: Simon Legner Date: Sun, 17 Nov 2024 11:30:48 +0100 Subject: [PATCH] Fix manifest_test.rb --- test/lib/docs/core/manifest_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lib/docs/core/manifest_test.rb b/test/lib/docs/core/manifest_test.rb index 42c053af..60d5ba90 100644 --- a/test/lib/docs/core/manifest_test.rb +++ b/test/lib/docs/core/manifest_test.rb @@ -64,7 +64,7 @@ class ManifestTest < Minitest::Spec it "includes the doc's meta representation" do json = manifest.as_json assert_equal 1, json.length - assert_equal "{\"name\"=>\"Test\", \"db_size\"=>776533, :attribution=>\"foo\", \"alias\"=>nil}", json[0].to_s + assert_equal "{\"name\"=>\"Test\", \"db_size\"=>776533, :attribution=>\"foo\", :alias=>nil}", json[0].to_s end end