Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
Signed-off-by: Hongxin Liang <honnix@users.noreply.github.com>
  • Loading branch information
honnix committed Dec 29, 2023
1 parent cc7d32f commit fea5b51
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,8 @@ class SdkScalaTypeTest {
"floats" -> createCollectionVar(SimpleType.FLOAT),
"booleans" -> createCollectionVar(SimpleType.BOOLEAN),
"datetimes" -> createCollectionVar(SimpleType.DATETIME),
"durations" -> createCollectionVar(SimpleType.DURATION)
"durations" -> createCollectionVar(SimpleType.DURATION),
"generics" -> createCollectionVar(SimpleType.STRUCT)
).asJava

val output = SdkScalaType[CollectionInput].getVariableMap
Expand Down Expand Up @@ -487,7 +488,8 @@ class SdkScalaTypeTest {
"floatMap" -> createMapVar(SimpleType.FLOAT),
"booleanMap" -> createMapVar(SimpleType.BOOLEAN),
"datetimeMap" -> createMapVar(SimpleType.DATETIME),
"durationMap" -> createMapVar(SimpleType.DURATION)
"durationMap" -> createMapVar(SimpleType.DURATION),
"genericMap" -> createMapVar(SimpleType.STRUCT)
).asJava

val output = SdkScalaType[MapInput].getVariableMap
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<module>flytekit-api</module>
<module>flytekit-jackson</module>
<module>flytekit-java</module>
<module>flytekit-scala_2.12</module>
<!-- <module>flytekit-scala_2.12</module>-->

This comment has been minimized.

Copy link
@andresgomezfrr

andresgomezfrr Dec 29, 2023

Collaborator

:love:

<module>flytekit-scala_2.13</module>
<module>flytekit-scala-tests</module>
<module>flytekit-testing</module>
Expand Down

0 comments on commit fea5b51

Please sign in to comment.