Skip to content

Commit

Permalink
FIX-#2277: applied Title Case to the names of DATASET_SIZE_DICT keys (#…
Browse files Browse the repository at this point in the history
…2278)

Signed-off-by: Dmitry Chigarev <[email protected]>
  • Loading branch information
dchigarev authored Oct 20, 2020
1 parent c680077 commit 39d69ab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modin/pandas/test/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@
random_state = np.random.RandomState(seed=42)

DATASET_SIZE_DICT = {
"small": (2 ** 2, 2 ** 3),
"normal": (2 ** 6, 2 ** 8),
"big": (2 ** 7, 2 ** 12),
"Small": (2 ** 2, 2 ** 3),
"Normal": (2 ** 6, 2 ** 8),
"Big": (2 ** 7, 2 ** 12),
}

# Size of test dataframes
NCOLS, NROWS = DATASET_SIZE_DICT.get(TestDatasetSize.get(), DATASET_SIZE_DICT["normal"])
NCOLS, NROWS = DATASET_SIZE_DICT.get(TestDatasetSize.get(), DATASET_SIZE_DICT["Normal"])

# Range for values for test data
RAND_LOW = 0
Expand Down

0 comments on commit 39d69ab

Please sign in to comment.