COMPMID-765: Fix CPPPermute error when permuting the strides.

Change-Id: I4ea57579d997dd6a2e248634e3b7cb58bb3e2838
Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/120693
Reviewed-by: Pablo Tello <pablo.tello@arm.com>
Tested-by: Jenkins <bsgcomp@arm.com>
diff --git a/tests/datasets/ShapeDatasets.h b/tests/datasets/ShapeDatasets.h
index 7333942..4b56370 100644
--- a/tests/datasets/ShapeDatasets.h
+++ b/tests/datasets/ShapeDatasets.h
@@ -100,7 +100,8 @@
     Small3DShapes()
         : ShapeDataset("Shape",
     {
-        TensorShape{ 7U, 7U, 5U },
+        TensorShape{ 1U, 7U, 7U },
+                     TensorShape{ 7U, 7U, 5U },
                      TensorShape{ 27U, 13U, 37U },
                      TensorShape{ 128U, 64U, 21U }
     })
@@ -128,7 +129,8 @@
     Small4DShapes()
         : ShapeDataset("Shape",
     {
-        TensorShape{ 7U, 7U, 5U, 3U },
+        TensorShape{ 1U, 7U, 1U, 3U },
+                     TensorShape{ 7U, 7U, 5U, 3U },
                      TensorShape{ 27U, 13U, 37U, 2U },
                      TensorShape{ 128U, 64U, 21U, 3U }
     })