Fix wmemmove test.

I accidentally copied over the nul terminator with the test.

Change-Id: I24a9aa05d4fba4f383fa38a3041bb6a6b179130c
diff --git a/tests/wchar_test.cpp b/tests/wchar_test.cpp
index 5fa5bf9..5a250a2 100644
--- a/tests/wchar_test.cpp
+++ b/tests/wchar_test.cpp
@@ -450,6 +450,6 @@
   wmemmove(wstr, const_wstr, sizeof(const_wstr)/sizeof(wchar_t));
   EXPECT_STREQ(const_wstr, wstr);
 
-  wmemmove(wstr+5, wstr, sizeof(const_wstr)/sizeof(wchar_t) - 5);
-  EXPECT_STREQ(L"This This is a test of something or other.", wstr);
+  wmemmove(wstr+5, wstr, sizeof(const_wstr)/sizeof(wchar_t) - 6);
+  EXPECT_STREQ(L"This This is a test of something or other", wstr);
 }