From c69e101f6bbdaf2b834ed88169356f4c48a9ed44 Mon Sep 17 00:00:00 2001 From: James Gowdy Date: Thu, 19 Mar 2020 11:37:00 +0000 Subject: [PATCH] reordering checks enum --- x-pack/plugins/ml/common/types/categories.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x-pack/plugins/ml/common/types/categories.ts b/x-pack/plugins/ml/common/types/categories.ts index 2f5b96eb5457344..5d4c3eab53ee885 100644 --- a/x-pack/plugins/ml/common/types/categories.ts +++ b/x-pack/plugins/ml/common/types/categories.ts @@ -39,12 +39,12 @@ export interface CategoryFieldExample { } export enum VALIDATION_RESULT { + NO_EXAMPLES, + FAILED_TO_TOKENIZE, + TOO_MANY_TOKENS, TOKEN_COUNT, MEDIAN_LINE_LENGTH, NULL_VALUES, - NO_EXAMPLES, - TOO_MANY_TOKENS, - FAILED_TO_TOKENIZE, INSUFFICIENT_PRIVILEGES, }