Skip to content

Commit

Permalink
Swap arguments so they are in the correct order: expected value, actual
Browse files Browse the repository at this point in the history
value.

Signed-off-by: Aurélien Pupier <apupier@redhat.com>
  • Loading branch information
apupier authored and oscerd committed Oct 20, 2020
1 parent f398d68 commit 5cff776
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -57,8 +57,8 @@ void testAws2S3Options() throws Exception {
assertEquals("camel.sink.path.bucketNameOrArn", model.getOptions().get(0).getName());
assertEquals("camel.sink.endpoint.amazonS3Client", model.getOptions().get(1).getName());
assertEquals("camel.sink.endpoint.autoCreateBucket", model.getOptions().get(2).getName());
assertEquals(model.getConverters().size(), 1);
assertEquals(model.getTransforms().size(), 1);
assertEquals(1, model.getConverters().size());
assertEquals(1, model.getTransforms().size());
assertNull(model.getAggregationStrategies());
}

Expand Down

0 comments on commit 5cff776

Please sign in to comment.