From c7705b006a25a240bc606797c2fef66f0598f30b Mon Sep 17 00:00:00 2001 From: Jan Travnicek <Jan.Travnicek@fit.cvut.cz> Date: Fri, 4 Oct 2019 21:23:11 +0200 Subject: [PATCH] cap symbol rank to 2 in tests --- alib2integrationtest/test-src/tests/arbologyTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alib2integrationtest/test-src/tests/arbologyTest.cpp b/alib2integrationtest/test-src/tests/arbologyTest.cpp index 47f8dc0658..a87ce15945 100644 --- a/alib2integrationtest/test-src/tests/arbologyTest.cpp +++ b/alib2integrationtest/test-src/tests/arbologyTest.cpp @@ -58,7 +58,7 @@ static std::string qGen ( const EGenerateType & type, int height, int nodes, int oss << " (bool) false"; /* alphRand */ if ( type == EGenerateType::NONLINEAR_PATTERN || type == EGenerateType::NONLINEAR_PATTERN_SINGLE_VAR ) oss << " (bool)" << ( type == EGenerateType::NONLINEAR_PATTERN_SINGLE_VAR ); - oss << " (int)" << 5; /* rank */ + oss << " (int)" << 2; /* rank */ oss << "> $" << output; return oss.str ( ); } -- GitLab