From: Vadim Zeitlin <vadim@wxwidgets.org>
Date: Sun, 2 Nov 2008 22:30:16 +0000 (+0000)
Subject: undo the previous change, it's not needed any more now that we overload assertEquals... 
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/8112fbf0d7b2fef838b2cfdbb1c3bc06146c3701

undo the previous change, it's not needed any more now that we overload assertEquals(int,long) too and it broke VC6 compilation again

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56652 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---

diff --git a/tests/arrays/arrays.cpp b/tests/arrays/arrays.cpp
index 5ed8f5eee3..3df8126846 100644
--- a/tests/arrays/arrays.cpp
+++ b/tests/arrays/arrays.cpp
@@ -614,7 +614,7 @@ void ArraysTestCase::Swap()
     DoTestSwap(1, 10, 100, (wxArrayInt *)NULL);
 #endif
 
-    DoTestSwap(6L, 28L, 496L, (wxArrayLong *)NULL);
+    DoTestSwap(6, 28, 496, (wxArrayLong *)NULL);
 }
 
 void ArraysTestCase::TestSTL()