Skip to content

Commit

Permalink
Remove unneeded unit test error codes.
Browse files Browse the repository at this point in the history
Signed-off-by: Joey Kleingers <[email protected]>
  • Loading branch information
joeykleingers committed Oct 5, 2023
1 parent fd069d2 commit 0a568f2
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/Plugins/ComplexCore/test/ImportCSVDataTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,18 @@ const fs::path k_TestInput = fs::path(unit_test::k_BinaryDir.view()) / "ImportCS
constexpr int32 k_InvalidArgumentErrorCode = -100;
constexpr int32 k_OverflowErrorCode = -101;
constexpr int32 k_BlankLineErrorCode = -119;

constexpr int32 k_EmptyFile = -100;
constexpr int32 k_InconsistentCols = -104;
constexpr int32 k_DuplicateNames = -105;
constexpr int32 k_InvalidArrayType = -106;
constexpr int32 k_IllegalNames = -107;
constexpr int32 k_FileNotOpen = -108;
constexpr int32 k_IncorrectDataTypeCount = -109;
constexpr int32 k_IncorrectMaskCount = -110;
constexpr int32 k_IncorrectTuples = -113;
constexpr int32 k_NewDGExists = -114;
constexpr int32 k_CannotSkipToLine = -115;
constexpr int32 k_EmptyNames = -116;
constexpr int32 k_EmptyLine = -119;
constexpr int32 k_HeaderLineOutOfRange = -120;
constexpr int32 k_StartImportRowOutOfRange = -121;
constexpr int32 k_EmptyHeaders = -122;
constexpr int32 k_IgnoredTupleDims = -200;
constexpr int32 k_FileDoesNotExist = -300;
} // namespace

Expand Down

0 comments on commit 0a568f2

Please sign in to comment.