From 0e163f3d8db38a48548dc90f63e144de29ce48b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= Date: Thu, 11 Jan 2024 12:52:30 -0600 Subject: [PATCH] test: Fix GitLab field types --- samples/sample_tap_gitlab/gitlab_rest_streams.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/samples/sample_tap_gitlab/gitlab_rest_streams.py b/samples/sample_tap_gitlab/gitlab_rest_streams.py index 1db629099c..5e6077b100 100644 --- a/samples/sample_tap_gitlab/gitlab_rest_streams.py +++ b/samples/sample_tap_gitlab/gitlab_rest_streams.py @@ -11,6 +11,7 @@ from singer_sdk.typing import ( ArrayType, DateTimeType, + DateType, IntegerType, PropertiesList, Property, @@ -158,9 +159,9 @@ class EpicsStream(ProjectBasedStream): Property("description", StringType), Property("state", StringType), Property("author_id", IntegerType), - Property("start_date", DateTimeType), + Property("start_date", DateType), Property("end_date", DateTimeType), - Property("due_date", DateTimeType), + Property("due_date", DateType), Property("created_at", DateTimeType), Property("updated_at", DateTimeType), Property("labels", ArrayType(StringType)),