Skip to content
This repository has been archived by the owner on Dec 15, 2020. It is now read-only.

Commit

Permalink
cleanup tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackevansevo committed Apr 25, 2017
1 parent 07168b1 commit e9211a8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/test_primitives.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pytest
import pytest # type: ignore

from basic_utils.primitives import (
complement, compose, dec, even, identity, inc, odd
complement, comp, dec, even, identity, inc, odd
)


Expand All @@ -13,9 +13,9 @@ def test_identity(data):
assert identity(data) == data


def test_compose():
assert compose(complement, even)(3)
assert compose(complement, odd)(2)
def test_comp():
assert comp(complement, even)(3)
assert comp(complement, odd)(2)


def test_complement():
Expand Down

0 comments on commit e9211a8

Please sign in to comment.