From 2c9df25e55d64a827727802ea10b923311f050fd Mon Sep 17 00:00:00 2001 From: Satwant Rana <4613501+satrana42@users.noreply.github.com> Date: Sun, 22 Sep 2024 05:54:05 +0530 Subject: [PATCH] Fix an integration test (#568) The test `test_social_network.py` fails in backend mode because of wrong type assigned to a field. This change fixes the same. --- fennel/client_tests/test_social_network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fennel/client_tests/test_social_network.py b/fennel/client_tests/test_social_network.py index 13d9909e..87510744 100644 --- a/fennel/client_tests/test_social_network.py +++ b/fennel/client_tests/test_social_network.py @@ -51,7 +51,7 @@ class PostInfoWithRightFields: category: str # type: ignore post_id: int = field(key=True) timestamp: datetime - extra_field: str + extra_field: int @meta(owner="data-eng@myspace.com")