AnandInguva commented on code in PR #27493:
URL: https://github.com/apache/beam/pull/27493#discussion_r1263882151


##########
sdks/python/apache_beam/ml/transforms/tft_test.py:
##########
@@ -391,5 +392,81 @@ def equals_fn(a, b):
       assert_that(actual_output, equal_to(expected_output, 
equals_fn=equals_fn))
 
 
+class ScaleToMinMaxTest(unittest.TestCase):
+  def setUp(self) -> None:
+    self.artifact_location = tempfile.mkdtemp()
+
+  def tearDown(self):
+    shutil.rmtree(self.artifact_location)
+
+  def test_scale_to_min_max(self):
+    data = [{
+        'x': 4,
+    }, {
+        'x': 4,
+    }, {
+        'x': 4,
+    }]

Review Comment:
   Yes, I added this test case, which was used in TFT tests. 



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to