Skip to content

Commit

Permalink
chore: display only filename in dictionary specs
Browse files Browse the repository at this point in the history
  • Loading branch information
ronaldtse committed Aug 30, 2024
1 parent b6cf0a9 commit 50446d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/ogc/gml/dictionary_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ def file_contents(filename)

# expect(output).to be_equivalent_to(input)
# end

it "round-trips #{filename} with xml-c14" do
fn = Pathname.new(filename).basename
it "round-trips #{fn} with xml-c14" do
input = file_contents(Pathname.new(filename).basename)
output = Ogc::Gml::Dictionary.from_xml(input).to_xml(
pretty: true,
declaration: true,
encoding: "utf-8"
encoding: "utf-8",
)

expect(output).to be_analogous_with(input)
Expand Down

0 comments on commit 50446d1

Please sign in to comment.