Skip to content

Commit

Permalink
PostgreSQLSetup.java: forgot to update version - #51
Browse files Browse the repository at this point in the history
  • Loading branch information
edrdo committed Dec 6, 2018
1 parent a2da35c commit 0fd1d88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/site/markdown/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
JDBDT (Java DataBase Delta Testing) is an open-source Java library for
testing database applications. The library is designed for automation
of database setup and validation in test code.
JDBDT is compact and has no third-party library dependencies (it just the Java 8 SE API internally),
JDBDT is compact and has no third-party library dependencies (it just uses the Java 8 SE API internally),
making it also easy and lightweight to integrate.

Compared to existing database testing frameworks, the main conceptual novelty
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/jdbdt/postgresql/PostgreSQLSetup.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void stop() { }

@Override
public String start() {
postgres = new EmbeddedPostgres(Version.V10_3);
postgres = new EmbeddedPostgres(Version.V10_6);
Path cachePath = FileSystems.getDefault().getPath(System.getProperty("user.home") + "/.embedpostgresql/");
try {
return postgres.start(EmbeddedPostgres.cachedRuntimeConfig(cachePath));
Expand Down

0 comments on commit 0fd1d88

Please sign in to comment.