Skip to content

Commit

Permalink
Merge pull request #3744 from acinader/fix-some-typos-pg-init-options…
Browse files Browse the repository at this point in the history
…-test

Some wordsmithing on test descriptions.
  • Loading branch information
natanrolnik authored Apr 23, 2017
2 parents 0f1aea1 + a0c1974 commit 2a5c203
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/PostgresInitOptions.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const GameScore = Parse.Object.extend({
});

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

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

0 comments on commit 2a5c203

Please sign in to comment.