test/excon/links_test.rb in excon-hypermedia-0.5.2 vs test/excon/links_test.rb in excon-hypermedia-0.5.3
- old
+ new
@@ -1,7 +1,6 @@
# frozen_string_literal: true
-# rubocop:disable Metrics/MethodLength
require_relative '../test_helper'
module Excon
# LinksTest
@@ -12,13 +11,13 @@
def body
<<-EOF
{
"_links": {
"self": {
- "href": "https://www.example.org/product/bicycle"
+ "href": "https://example.org/product/bicycle"
},
"parts": {
- "href": "https://www.example.org/product/bicycle/parts"
+ "href": "https://example.org/product/bicycle/parts"
}
}
}
EOF
end