Skip to content

Commit

Permalink
chore: fix missing test assert and update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jarlah committed Oct 6, 2023
1 parent fb1069f commit 0afb967
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,9 @@ CephContainer container = new CephContainer("quay.io/ceph/demo");
@Container
CephContainer container = new CephContainer(DockerImageName.parse("quay.io/ceph/demo"));
```
or
```java
@Container
CephContainer container = new CephContainer("quay.io/ceph/demo");
```
or

or override with a non-standard, but yet compliant image, for ex if you make a new image based on quay.io/ceph/demo

```java
@Container
CephContainer container = new CephContainer(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void testBasicUsage() throws Exception {
// }

s3client.createBucket("test-bucket");
assertThat(s3client.doesBucketExistV2("test-bucket"));
assertThat(s3client.doesBucketExistV2("test-bucket")).isTrue();

URL file = this.getClass().getResource("/object_to_upload.txt");
assertThat(file).isNotNull();
Expand Down

0 comments on commit 0afb967

Please sign in to comment.