uranusjr commented on code in PR #51419: URL: https://github.com/apache/airflow/pull/51419#discussion_r2141876799
########## airflow-core/tests/unit/serialization/serializers/test_serializers.py: ########## @@ -166,12 +187,60 @@ def test_encode_k8s_v1pod(self): "spec": {"containers": [{"image": "bar", "name": "foo"}]}, } + def test_bignum(self): + from airflow.serialization.serializers.bignum import serialize + + assert serialize(12345) == ("", "", 0, False) Review Comment: This should probably be named better, such as `test_bignum_not_decimal` or something? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org