From 84cbe7c862f17d74d5fd8c3ecd2cfacdce3dff81 Mon Sep 17 00:00:00 2001 From: Glauber Costa Date: Thu, 21 May 2015 12:19:33 -0400 Subject: [PATCH] sstables: fix test position This is my turn to make the same mistake as Nadav recently made: I have written down the expected position from the test output itself, instead of checking the file. A position of 0x400c0000000000 is obviously ridiculous. The file itself is not that big. My recent patch to fix the summary broke the test, and so we need to fix it. Signed-off-by: Glauber Costa --- tests/urchin/sstable_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/urchin/sstable_test.cc b/tests/urchin/sstable_test.cc index 994189b55f..637bd72852 100644 --- a/tests/urchin/sstable_test.cc +++ b/tests/urchin/sstable_test.cc @@ -179,7 +179,7 @@ SEASTAR_TEST_CASE(big_summary_query_0) { } SEASTAR_TEST_CASE(big_summary_query_32) { - return summary_query<32, 0x400c0000000000, 182>("tests/urchin/sstables/bigsummary", 76); + return summary_query<32, 0xc4000, 182>("tests/urchin/sstables/bigsummary", 76); } static future do_write_sst(sstring dir, unsigned long generation) {