MLCE-67 Fix for Github issue 91

Remove incorrect early out from image resize

Change-Id: I58014680f5cbe43dfc6b4af66638db67c070a146
diff --git a/tests/InferenceTestImage.cpp b/tests/InferenceTestImage.cpp
index 31ba49a..c305d43 100644
--- a/tests/InferenceTestImage.cpp
+++ b/tests/InferenceTestImage.cpp
@@ -219,12 +219,6 @@
             "operation can be zero. Requested width: %1%. Requested height: %2%.") % newWidth % newHeight));
     }
 
-    if (newWidth == m_Width && newHeight == m_Height)
-    {
-        // Nothing to do.
-        return out;
-    }
-
     switch (meth) {
         case ResizingMethods::STB:
         {