summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-05-01 18:09:14 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-05-01 18:09:14 +0000
commit5be2be45790a4e09a6d4e4fcb5b01627f23670b3 (patch)
tree4c5b949ba1c03a9672f9013c734c5759946a28c3 /tests
parentb0024c236bc7073c4f164369bd433b8698f42d82 (diff)
downloadATCD-5be2be45790a4e09a6d4e4fcb5b01627f23670b3.tar.gz
Fixed to use new ACE_TEXT macros.
Diffstat (limited to 'tests')
-rw-r--r--tests/Hash_Map_Manager_Test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/Hash_Map_Manager_Test.cpp b/tests/Hash_Map_Manager_Test.cpp
index 3328b942921..3f1d167ed3b 100644
--- a/tests/Hash_Map_Manager_Test.cpp
+++ b/tests/Hash_Map_Manager_Test.cpp
@@ -205,7 +205,7 @@ run_test (void)
// Remove all the entries.
if (hash.unbind_all () != 0)
ACE_ERROR_RETURN ((LM_ERROR,
- ASYS_TEXT ("unbind_all failed\n")),
+ ACE_TEXT ("unbind_all failed\n")),
-1);
// Redo the <bind> operations.
@@ -213,9 +213,9 @@ run_test (void)
if (hash.bind (string_table[i].key_,
string_table[i].value_) != 0)
ACE_ERROR_RETURN ((LM_ERROR,
- ASYS_TEXT ("%p failed for %s \n"),
- ASYS_TEXT ("bind"),
- ASYS_MULTIBYTE_STRING (string_table[i].key_)), -1);
+ ACE_TEXT ("%p failed for %s \n"),
+ ACE_TEXT ("bind"),
+ string_table[i].key_), -1);
alloc.dump ();
return 0;