URL should test for logical equality
fletchgqc opened this issue · 1 comments
fletchgqc commented
The following test case returns false. I think that it should return true, as these two URLs are logically and practically equal:
val urlA = URL("http://localhost?a=b&c=d")
val urlB = URL("http://localhost?c=d&a=b")
Assertions.assertThat(urlA).isEqualTo(urlB)
fletchgqc commented
Sorry, wrong place, will re-open in correct location.