summaryrefslogtreecommitdiff
path: root/tests/IOStream_Test.cpp
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-17 12:37:32 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-17 12:37:32 +0000
commitef3ca2e723e24c9e56ee28ff42bfec27c7f2591e (patch)
tree2637a4a5a2d84c470eea95e595332e988839dd38 /tests/IOStream_Test.cpp
parent4791d7b9883b3fe89c5a36ed958ac8837c1fcdf9 (diff)
downloadATCD-ef3ca2e723e24c9e56ee28ff42bfec27c7f2591e.tar.gz
(server): fixed sign of constant used to check for valid double.
Diffstat (limited to 'tests/IOStream_Test.cpp')
-rw-r--r--tests/IOStream_Test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/IOStream_Test.cpp b/tests/IOStream_Test.cpp
index f465e100411..00ea123cc87 100644
--- a/tests/IOStream_Test.cpp
+++ b/tests/IOStream_Test.cpp
@@ -377,7 +377,7 @@ server (void *arg = 0)
// check for proper received values
ACE_ASSERT (i == -1 && (f1 >= -0.13 && f1 <= -0.11)
&& l == -666555444 && (f2 >= -24.0 && f2 <= -22.0)
- && (d >= -45e+9 && d <= 47e+9));
+ && (d >= 45e+9 && d <= 47e+9));
client_handler.close ();