summaryrefslogtreecommitdiff
path: root/test/io/read_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/io/read_test.cpp')
-rw-r--r--test/io/read_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/io/read_test.cpp b/test/io/read_test.cpp
index aaed5e4471..2b37846f2f 100644
--- a/test/io/read_test.cpp
+++ b/test/io/read_test.cpp
@@ -65,7 +65,7 @@ void test_stream_reader_big()
//Test for unexpcted EOF on numbers (input too short for int32_t)
is.str("\x03\x04");
- EXPECT_EXCEPTION(reader.read_num(i), io::stream_reader::input_error);
+ reader.read_num(i);
ASSERT(!is);
}