From 027103b4f653e78606d12c1b646ed2acfd12acf8 Mon Sep 17 00:00:00 2001 From: Cai Yudong Date: Mon, 18 Oct 2021 18:10:57 +0800 Subject: [PATCH] Reorder header files for test_span (#10053) Signed-off-by: yudong.cai --- internal/core/unittest/test_span.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/internal/core/unittest/test_span.cpp b/internal/core/unittest/test_span.cpp index c8470ed11c..82806a93f2 100644 --- a/internal/core/unittest/test_span.cpp +++ b/internal/core/unittest/test_span.cpp @@ -10,13 +10,12 @@ // or implied. See the License for the specific language governing permissions and limitations under the License #include -#include "utils/tools.h" -#include "test_utils/DataGen.h" -#include "segcore/SegmentGrowing.h" -namespace { +#include "segcore/SegmentGrowing.h" +#include "test_utils/DataGen.h" +#include "utils/tools.h" + const int64_t ROW_COUNT = 100 * 1000; -} TEST(Span, Naive) { using namespace milvus;