Skip to content

Commit

Permalink
test: check object name
Browse files Browse the repository at this point in the history
  • Loading branch information
12rambau committed Jan 22, 2024
1 parent f11baa1 commit e803ea5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_Float.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ def test_init(self):
ee.Float()

def test_name(self):
ee.Float.__name__ == "Float"
assert ee.Float.__name__ == "Float"
2 changes: 1 addition & 1 deletion tests/test_Int.py → tests/test_Integer.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ def test_init(self):
ee.Integer()

def test_name(self):
ee.Integer.__name__ == "Integer"
assert ee.Integer.__name__ == "Integer"

0 comments on commit e803ea5

Please sign in to comment.