Skip to content

Commit 2a5c203

Browse files
authored
Merge pull request #3744 from acinader/fix-some-typos-pg-init-options-test
Some wordsmithing on test descriptions.
2 parents 0f1aea1 + a0c1974 commit 2a5c203

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/PostgresInitOptions.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const GameScore = Parse.Object.extend({
2929
});
3030

3131
describe('Postgres database init options', () => {
32-
it('create server with public schema databaseOptions,shoud be ok', (done) => {
32+
it('should create server with public schema databaseOptions', (done) => {
3333
reconfigureServer({
3434
databaseAdapter: new PostgresStorageAdapter({
3535
uri: postgresURI, collectionPrefix: 'test_',
@@ -43,7 +43,7 @@ describe('Postgres database init options', () => {
4343
score.save().then(done, fail);
4444
});
4545

46-
it('create server with not exists schema databaseOptions,shoud be fail', (done) => {
46+
it('should fail to create server if schema databaseOptions does not exist', (done) => {
4747
reconfigureServer({
4848
databaseAdapter: new PostgresStorageAdapter({
4949
uri: postgresURI, collectionPrefix: 'test_',

0 commit comments

Comments
 (0)