Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Nov 5, 2016
1 parent 979811d commit fff611a
Show file tree
Hide file tree
Showing 40 changed files with 40 additions and 40 deletions.
2 changes: 1 addition & 1 deletion test/src/base/by.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { range , by , zip , list , count , head } from '../../..' ;
import { range , by , zip , list , count , head } from '../../../src' ;

test( 'by' , t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/base/consume.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { range , consume , list } from '../../..' ;
import { range , consume , list } from '../../../src' ;

test( "consume" , t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/base/count.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { count , next } from '../../..' ;
import { count , next } from '../../../src' ;

test( 'count( 0 , 1 )' , t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/base/cycle.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { cycle , next } from '../../..' ;
import { cycle , next } from '../../../src' ;

test( 'cycle (empty)' , t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/base/drop.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { range , drop , list } from '../../..' ;
import { range , drop , list } from '../../../src' ;

test( "drop" , t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/base/exhaust.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { range , head , exhaust , list } from '../../..' ;
import { range , head , exhaust , list } from '../../../src' ;

test( "exhaust" , t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/base/frame.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { range , frame , zip , list } from '../../..' ;
import { range , frame , zip , list } from '../../../src' ;

test( "frame" , t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/base/next.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { range , next , StopIteration } from '../../..' ;
import { range , next , StopIteration } from '../../../src' ;

test( "next" , t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/base/range.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list , range } from '../../..';
import { list , range } from '../../../src';

test( "range", t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/base/tail.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { range , tail , list , count } from '../../..' ;
import { range , tail , list , count } from '../../../src' ;

test( "tail" , t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/base/take.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { range , take , list } from '../../..' ;
import { range , take , list } from '../../../src' ;

test( "take" , t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/base/tee.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list , map , count , range , head , tee } from '../../..' ;
import { list , map , count , range , head , tee } from '../../../src' ;

test( "tee", t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/base/trunc.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { range , trunc , list } from '../../..' ;
import { range , trunc , list } from '../../../src' ;

test( "trunc" , t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/map/chain.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import test from 'ava' ;
import { list , chain } from '../../..' ;
import { list , chain } from '../../../src' ;

test( "chain", t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/map/combinations.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list , range , combinations } from '../../..' ;
import { list , range , combinations } from '../../../src' ;

test( "combinations", t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/map/combinationswithrepetition.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list , range , combinationswithrepetition } from '../../..' ;
import { list , range , combinationswithrepetition } from '../../../src' ;

test( "combinationswithrepetition", t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/map/compress.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list , compress } from '../../..' ;
import { list , compress } from '../../../src' ;

test( "compress", t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/map/dropwhile.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list , range , dropwhile } from '../../..' ;
import { list , range , dropwhile } from '../../../src' ;
import { lt } from 'aureooms-js-predicate' ;

test( "dropwhile", t => {
Expand Down
2 changes: 1 addition & 1 deletion test/src/map/enumerate.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list , enumerate } from '../../..' ;
import { list , enumerate } from '../../../src' ;

test( "enumerate", t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/map/filter.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list , filter } from '../../..' ;
import { list , filter } from '../../../src' ;
import { gt } from 'aureooms-js-predicate' ;

test("filter", t => {
Expand Down
2 changes: 1 addition & 1 deletion test/src/map/filterfalse.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list , filterfalse } from '../../..' ;
import { list , filterfalse } from '../../../src' ;
import { le } from 'aureooms-js-predicate' ;

test("filterfalse", t => {
Expand Down
2 changes: 1 addition & 1 deletion test/src/map/group.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list , map , group , repeat , ncycle , next , range } from '../../..' ;
import { list , map , group , repeat , ncycle , next , range } from '../../../src' ;
import { identity } from 'aureooms-js-operator' ;

test( "group", t => {
Expand Down
2 changes: 1 addition & 1 deletion test/src/map/map.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list , map } from '../../..' ;
import { list , map } from '../../../src' ;

test( "map", t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/map/nrepeat.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list, nrepeat } from '../../..' ;
import { list, nrepeat } from '../../../src' ;

test( "nrepeat", t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/map/permutations.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list , range , permutations } from '../../..' ;
import { list , range , permutations } from '../../../src' ;

test( "permutations", t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/map/product.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list , product } from '../../..' ;
import { list , product } from '../../../src' ;

test( "product", t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/map/repeat.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list , head , repeat } from '../../..' ;
import { list , head , repeat } from '../../../src' ;

test( "repeat", t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/map/reversed.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list , reversed } from '../../..' ;
import { list , reversed } from '../../../src' ;

test( "reversed", t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/map/roundrobin.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list , roundrobin } from '../../..' ;
import { list , roundrobin } from '../../../src' ;

test( "roundrobin", t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/map/slice.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list , range , slice } from '../../..' ;
import { list , range , slice } from '../../../src' ;

test( "slice", t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/map/sorted.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { reduce , sorted } from '../../..' ;
import { reduce , sorted } from '../../../src' ;
import { increasing , decreasing } from "aureooms-js-compare" ;
import { contains } from "aureooms-js-operator" ;

Expand Down
2 changes: 1 addition & 1 deletion test/src/map/starmap.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list , starmap } from '../../..' ;
import { list , starmap } from '../../../src' ;
import { mul } from 'aureooms-js-operator' ;

test( "starmap", t => {
Expand Down
2 changes: 1 addition & 1 deletion test/src/map/takewhile.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { list , range, takewhile } from '../../..' ;
import { list , range, takewhile } from '../../../src' ;
import { lt } from 'aureooms-js-predicate' ;

test( "takewhile", t => {
Expand Down
2 changes: 1 addition & 1 deletion test/src/map/zip.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { len , list , map , zip , min , take } from '../../..' ;
import { len , list , map , zip , min , take } from '../../../src' ;
import { increasing } from 'aureooms-js-compare' ;

test( "zip", t => {
Expand Down
2 changes: 1 addition & 1 deletion test/src/map/ziplongest.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { len , list , map , ziplongest , max , chain , nrepeat } from '../../..' ;
import { len , list , map , ziplongest , max , chain , nrepeat } from '../../../src' ;
import { increasing } from 'aureooms-js-compare' ;

test( "ziplongest", t => {
Expand Down
2 changes: 1 addition & 1 deletion test/src/reduce/max.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import test from 'ava' ;

import { increasing , decreasing } from 'aureooms-js-compare' ;

import { max } from '../../..' ;
import { max } from '../../../src' ;

test( 'max' , t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/reduce/min.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import test from 'ava' ;

import { increasing , decreasing } from 'aureooms-js-compare' ;

import { min } from '../../..' ;
import { min } from '../../../src' ;

test( 'min' , t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/reduce/reduce.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { reduce } from '../../..' ;
import { reduce } from '../../../src' ;

test( 'reduce' , t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/reduce/some.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { some } from '../../..' ;
import { some } from '../../../src' ;

test('some', t => {

Expand Down
2 changes: 1 addition & 1 deletion test/src/reduce/sum.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from 'ava' ;

import { sum } from '../../..' ;
import { sum } from '../../../src' ;

test( 'sum' , t => {

Expand Down

0 comments on commit fff611a

Please sign in to comment.