Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
trhodeos committed Feb 5, 2024
1 parent cb8afe6 commit f69d754
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sdk/python/tests/unit/test_feature_views.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from datetime import timedelta

import pytest
from typecheck import TypeCheckError

from feast.aggregation import Aggregation
from feast.batch_feature_view import BatchFeatureView
Expand Down Expand Up @@ -278,7 +279,7 @@ def test_hash():


def test_field_types():
with pytest.raises(TypeError):
with pytest.raises(TypeCheckError):
Field(name="name", dtype=ValueType.INT32)


Expand Down

0 comments on commit f69d754

Please sign in to comment.