2
0
mirror of https://github.com/VinylDNS/vinyldns synced 2025-09-03 07:45:15 +00:00
Signed-off-by: Jay07GIT <jeyraj931@gmail.com>
This commit is contained in:
Jay07GIT
2025-04-02 15:19:05 +05:30
parent 49c1308c4e
commit e2b74ce332

View File

@@ -180,10 +180,10 @@ class ZoneServiceIntegrationSpec
"return a zone with appropriate response" in {
val result =
testZoneService
.getGenerateZoneByName("test-zone", okAuth)
.getGenerateZoneByName(okZone.name, okAuth)
.value
.unsafeRunSync()
result shouldBe Left(ZoneNotFoundError("Zone with name test-zone. does not exists"))
result shouldBe Left(ZoneNotFoundError(s"Zone with name ${okZone.name} does not exists"))
}
}