bitwalker / distillery-aws-example

An example application to go with the AWS guide in the Distillery documentation
Apache License 2.0
52 stars 73 forks source link

Fix repo module name in test helper #8

Closed brucepom closed 5 years ago

brucepom commented 5 years ago

Prior to this change the tests would fail because they used the wrong module name when attempting to start the repo. If you take a look in lib/example/repo.ex you can confirm that the correct repo module is Example.Repo not DistilleryAwsExample.Repo. By the way, thanks for this great reference repo, really helped me get me deploying with CodePipeline.

bitwalker commented 5 years ago

Thanks!