diff --git a/.gitignore b/.gitignore index 5a02738e2b..7836f997a4 100644 --- a/.gitignore +++ b/.gitignore @@ -20,7 +20,9 @@ examples/**/go.work examples/**/go.work.sum testdata/**/go.work testdata/**/go.work.sum +**/testdata/**/ftl-module-schema/ go-runtime/schema/testdata/test/test.go +.cache # Leaving old _ftl for now to avoid old stuff getting checked in **/testdata/**/_ftl diff --git a/java-runtime/java_integration_test.go b/java-runtime/java_integration_test.go index ef7b415c92..f2f3cb899c 100644 --- a/java-runtime/java_integration_test.go +++ b/java-runtime/java_integration_test.go @@ -32,7 +32,7 @@ func TestJavaToGoCall(t *testing.T) { StringField: ftl.Some[string]("obj"), BytesField: ftl.Some[[]byte]([]byte{87, 2, 9}), BoolField: ftl.Some[bool](true), - TimeField: ftl.Some[time.Time](time.Now().Local()), + TimeField: ftl.Some[time.Time](time.Now().UTC()), ArrayField: ftl.Some[[]string]([]string{"foo", "bar"}), MapField: ftl.Some[map[string]string](map[string]string{"gar": "har"}), }