diff options
author | elliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2004-12-09 13:33:55 +0000 |
---|---|---|
committer | elliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2004-12-09 13:33:55 +0000 |
commit | ee31a9b64760885693d9693bde4b8d0ae3144d6d (patch) | |
tree | 9b52f1b67febf9fef8065b63c6036323ca326c56 /TAO/orbsvcs/tests/InterfaceRepo | |
parent | 92d4227c01fd157ff2e76208f20dc39212ff384e (diff) | |
download | ATCD-ee31a9b64760885693d9693bde4b8d0ae3144d6d.tar.gz |
ChangeLogTag: Thu Dec 9 07:33:16 2004 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'TAO/orbsvcs/tests/InterfaceRepo')
-rw-r--r-- | TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.cpp b/TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.cpp index 72ebb710bd6..9ad5ee3708d 100644 --- a/TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.cpp +++ b/TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.cpp @@ -340,19 +340,19 @@ IFR_DII_Client::invoke_and_display (ACE_ENV_SINGLE_ARG_DECL) CORBA::NVList_ptr args = this->req_->arguments (); const char *artist = 0; - ACE_ASSERT ((*args->item (0)->value () >>= artist) == TRUE); + ACE_ASSERT ((*args->item (0)->value () >>= artist) == true); ACE_ASSERT (ACE_OS::strcmp (artist, "the Beatles") == 0); const char *title = 0; - ACE_ASSERT ((*args->item (1)->value () >>= title) == TRUE); + ACE_ASSERT ((*args->item (1)->value () >>= title) == true); const char *correct = "Sgt. Pepper's Lonely Hearts Club Band"; ACE_ASSERT (ACE_OS::strcmp (title, correct) == 0); ACE_UNUSED_ARG (correct); CORBA::Float price = 0.0f; - ACE_ASSERT ((*args->item (2)->value () >>= price) == TRUE); + ACE_ASSERT ((*args->item (2)->value () >>= price) == true); ACE_ASSERT (price == 13.49f); |