We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 697a782 commit 21d7a1aCopy full SHA for 21d7a1a
1 file changed
src/test/scala/net/yoshinorin/qualtet/http/routes/v1/TagRouteSpec.scala
@@ -43,21 +43,6 @@ class TagRouteSpec extends AnyWordSpec with BeforeAndAfterAll {
43
val t: Seq[TagResponseModel] = tagService.getAll.unsafeRunSync().filter(t => t.name.value.startsWith("tagRouteTag"))
44
45
"return tags" in {
46
- val expectJson =
47
- s"""
48
- |{
49
- | "id" : "${t(0).id.value}",
50
- | "name" : "${t(0).name.value}",
51
- | "path" : "${t(0).path.value}",
52
- | "count" : 1
53
- |},
54
55
- | "id" : "${t(1).id.value}",
56
- | "name" : "${t(1).name.value}",
57
- | "path" : "${t(1).path.value}",
58
59
- |}
60
- """.stripMargin.replaceNewlineAndSpace
61
62
client
63
.run(Request(method = Method.GET, uri = uri"/v1/tags/"))
0 commit comments