Browse Source

Keyvpostgres => KeyvPostgres

emp
Luke Childs 7 years ago
committed by Jytesh
parent
commit
61a3baafab
  1. 4
      packages/keyv-postgres/test/test.js

4
packages/keyv-postgres/test/test.js

@ -1,9 +1,9 @@
import test from 'ava';
import keyvTestSuite, { keyvOfficialTests } from 'keyv-test-suite';
import Keyv from 'keyv';
import Keyvpostgres from 'this';
import KeyvPostgres from 'this';
keyvOfficialTests(test, Keyv, 'postgresql://postgres@localhost:5432/keyv_test', 'postgresql://foo');
const store = () => new Keyvpostgres('postgresql://postgres@localhost:5432/keyv_test');
const store = () => new KeyvPostgres('postgresql://postgres@localhost:5432/keyv_test');
keyvTestSuite(test, Keyv, store);

Loading…
Cancel
Save