[MPS] Fix flip where no dims need to be flipped (#96605)

Fixes #96558

Pull Request resolved: https://github.com/pytorch/pytorch/pull/96605
Approved by: https://github.com/kulinseth
diff --git a/test/test_mps.py b/test/test_mps.py
index 66124e9..351aa76 100644
--- a/test/test_mps.py
+++ b/test/test_mps.py
@@ -6475,6 +6475,8 @@
         helper((1,), (0,))
         # input.numel() == 0
         helper((0,), (0,))
+        # none of dims that needs to be flipped
+        helper((1, 3), [0])
 
     # Test index select
     def test_index_select(self):