From fae876b554d21ea4fda9b59079422d690e5edac5 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Fri, 10 May 2019 18:31:30 +0100 Subject: [PATCH] [reactives3clienttest] clarify test descriptions --- .../net/kemitix/s3thorp/awssdk/ReactiveS3ClientTest.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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))