diff --git a/src/test/scala/net/kemitix/s3thorp/awssdk/ReactiveS3ClientTest.scala b/src/test/scala/net/kemitix/s3thorp/awssdk/ReactiveS3ClientTest.scala index d0d0ac0..9b37596 100644 --- a/src/test/scala/net/kemitix/s3thorp/awssdk/ReactiveS3ClientTest.scala +++ b/src/test/scala/net/kemitix/s3thorp/awssdk/ReactiveS3ClientTest.scala @@ -14,7 +14,7 @@ class ReactiveS3ClientTest extends FunSpec { self.objectHead("bucket", "remoteKey").unsafeRunSync() } - describe("when response is okay") { + describe("when underlying client response is okay") { val expectedHash = "hash" val expectedLastModified = Instant.now new ReactiveS3Client { self: S3Client => { @@ -32,7 +32,7 @@ class ReactiveS3ClientTest extends FunSpec { } } - describe("when throws NoSuchKeyException") { + describe("when underlying client throws NoSuchKeyException") { new ReactiveS3Client { self: S3Client => it("should return None") { assertResult(None)(invoke(self))