Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cleder committed Oct 12, 2023
1 parent 599b802 commit 8221213
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 15 deletions.
12 changes: 0 additions & 12 deletions .github/workflows/codeball.yml

This file was deleted.

6 changes: 3 additions & 3 deletions tests/test_factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@

def test_num_int() -> None:
assert factories.num("1") == 1
assert type(factories.num("1")) is int
assert isinstance(factories.num("1"), int)


def test_num_intf() -> None:
assert factories.num("1.0") == 1
assert type(factories.num("1.0")) is int
assert isinstance(factories.num("1.0"), int)


def test_num_float() -> None:
assert factories.num("1.1") == 1.1
assert type(factories.num("1.1")) is float
assert isinstance(factories.num("1.1"), float)


def test_orient_true() -> None:
Expand Down

0 comments on commit 8221213

Please sign in to comment.