Skip to content

Commit 650047e

Browse files
committed
Standardrb fixup
1 parent 8c09cc1 commit 650047e

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

test/test_mime_types_class.rb

+4-6
Original file line numberDiff line numberDiff line change
@@ -101,15 +101,13 @@ def setup
101101
assert_includes MIME::Types.type_for("xtxt"), "text/plain"
102102
end
103103

104-
<<<<<<< HEAD
105104
it "handles newline characters correctly" do
106105
assert_includes MIME::Types.type_for("test.pdf\n.txt"), "text/plain"
107106
assert_includes MIME::Types.type_for("test.txt\n.pdf"), "application/pdf"
108-
||||||| parent of 32714bc5f1ae (Add a stable sort)
109-
=======
110-
it 'returns a stable order for types with equal priority' do
111-
assert_equal %w(audio/webm video/webm), MIME::Types.type_for('foo.webm')
112-
>>>>>>> 32714bc5f1ae (Add a stable sort)
107+
end
108+
109+
it "returns a stable order for types with equal priority" do
110+
assert_equal %w[audio/webm video/webm], MIME::Types.type_for("foo.webm")
113111
end
114112
end
115113

0 commit comments

Comments
 (0)