From 312ccd0ed2499ec37a192b70e2c810542d55456a Mon Sep 17 00:00:00 2001 From: buildsample Date: Mon, 13 Jul 2015 21:07:50 +0530 Subject: [PATCH] Revert "test 9.2" --- shippable.yml | 2 +- test.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/shippable.yml b/shippable.yml index 09bdbf5..82755bd 100644 --- a/shippable.yml +++ b/shippable.yml @@ -9,7 +9,7 @@ install: - pip install -r requirements.txt addons: - postgresql: "9.2" + postgresql: "9.1" # Postgres binds to 127.0.0.1 by default and is started on boot. Default username is "postgres" with no password # Create a DB as part of before script to use it diff --git a/test.py b/test.py index df9deba..9eae9ba 100644 --- a/test.py +++ b/test.py @@ -8,7 +8,7 @@ def test_db(self): pg = Postgres() pg.populate() count = pg.read() - self.failIf(count != 5) + self.failIf(count != 6) pg.disconnect()