[s3uploadersuite] fix syntax
This commit is contained in:
parent
674e88d802
commit
f991c2b7b0
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ class S3UploaderSuite extends FunSpec {
|
||||||
|
|
||||||
new S3Uploader {
|
new S3Uploader {
|
||||||
override def objectHead(bucket: String, key: String): IO[Option[(MD5Hash, LastModified)]] = ???
|
override def objectHead(bucket: String, key: String): IO[Option[(MD5Hash, LastModified)]] = ???
|
||||||
override def upload(localFile: LocalFile, bucket: Bucket, remoteKey: RemoteKey): IO[Unit] = IO()
|
override def upload(localFile: LocalFile, bucket: Bucket, remoteKey: RemoteKey): IO[Unit] = IO.unit
|
||||||
|
|
||||||
describe("upload") {
|
describe("upload") {
|
||||||
val config: Config = Config("bucket", "prefix", new File("/path/to/files"))
|
val config: Config = Config("bucket", "prefix", new File("/path/to/files"))
|
||||||
|
|
Loading…
Reference in a new issue