Skip to content

Commit

Permalink
Fix minor typos in test names (parse-community#2351)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthur Cinader authored and Rafael Santos committed Mar 15, 2017
1 parent 30e076a commit 275d3d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/LoggerController.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ var LoggerController = require('../src/Controllers/LoggerController').LoggerCont
var FileLoggerAdapter = require('../src/Adapters/Logger/FileLoggerAdapter').FileLoggerAdapter;

describe('LoggerController', () => {
it('can check process a query witout throwing', (done) => {
it('can check process a query without throwing', (done) => {
// Make mock request
var query = {};

Expand Down Expand Up @@ -38,7 +38,7 @@ describe('LoggerController', () => {
done();
});

it('can process a query witout throwing', (done) => {
it('can process a query without throwing', (done) => {
// Make mock request
var query = {
from: "2016-01-01Z00:00:00",
Expand All @@ -59,7 +59,7 @@ describe('LoggerController', () => {
done();
});

it('can check process a query witout throwing', (done) => {
it('can check process a query without throwing', (done) => {
// Make mock request
var query = {
from: "2016-01-01",
Expand Down

0 comments on commit 275d3d7

Please sign in to comment.