From 2d34eb9ddde72944fef6666210002f4e23c4b0a6 Mon Sep 17 00:00:00 2001 From: William Parsley Date: Mon, 11 Dec 2023 14:12:08 -0600 Subject: [PATCH] add test file --- .../transformation/transformation_service_test.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 go/internal/feast/transformation/transformation_service_test.go diff --git a/go/internal/feast/transformation/transformation_service_test.go b/go/internal/feast/transformation/transformation_service_test.go new file mode 100644 index 0000000000..b50fd53e42 --- /dev/null +++ b/go/internal/feast/transformation/transformation_service_test.go @@ -0,0 +1,10 @@ +package transformation + +import ( + "github.com/stretchr/testify/assert" + "testing" +) + +func TestSendGrpcRequest(t *testing.T) { + assert.Equal(t, true, true) +}