Skip to content

Commit

Permalink
modify name
Browse files Browse the repository at this point in the history
  • Loading branch information
puritys committed Nov 14, 2015
1 parent b2539f0 commit 45af6ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/array.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ var php = require('./include.js');
var assert = require("assert");

//mocha lib/ --grep mthod_get
describe('Test method: array_merge', function() {
describe('array_merge()', function() {
it('merge index array', function() {
var arr1 = [1], arr2 = [2];
var res = php.array_merge(arr1, arr2);
Expand All @@ -24,7 +24,7 @@ describe('Test method: array_merge', function() {
});
});

describe('Test method: shuffle', function() {
describe('shuffle()', function() {
it('Normal', function() {
var data, res;
data = ["a", "b", "c"];
Expand Down Expand Up @@ -52,7 +52,7 @@ describe('Test method: shuffle', function() {
});
});

describe('Test method: array_rand', function() {
describe('array_rand()', function() {
it('Normal', function() {
var data, res;
data = ["a", "b", "c"];
Expand Down

0 comments on commit 45af6ff

Please sign in to comment.