Skip to content

Commit

Permalink
tests: fixed labeling
Browse files Browse the repository at this point in the history
Impact: low
  • Loading branch information
indieisaconcept committed Jul 27, 2014
1 parent 3f897a0 commit 4d64810
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/fixturl_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ describe('fixturl', function() {

});

it('generates a multiple url fixtures', function () {
it('generates multiple url fixtures', function () {

var result = fixturl('/some/path/:id', [
{
Expand All @@ -89,7 +89,7 @@ describe('fixturl', function() {

});

it('generates a multiple unique url fixtures', function () {
it('generates multiple unique url fixtures', function () {

var result = fixturl('/some/path/:id', [
{
Expand All @@ -113,7 +113,7 @@ describe('fixturl', function() {

});

it('generates a multiple url fixtures from a combined config ( param & query array )', function () {
it('generates multiple url fixtures from a combined config ( param & query array )', function () {

var result = fixturl('/some/path/:id', {
param: [
Expand All @@ -137,7 +137,7 @@ describe('fixturl', function() {

});

it('generates a multiple url fixtures from a combined config ( single array )', function () {
it('generates multiple url fixtures from a combined config ( single array )', function () {

var result = fixturl('/some/path/:id', {
param: [ { id: '12345' }, { id: '6789' } ],
Expand Down

0 comments on commit 4d64810

Please sign in to comment.