Skip to content

Commit 8067be7

Browse files
committed
fix: tests
1 parent 97a8607 commit 8067be7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

transforms/tabular-merger-tool/tests/test_main.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,11 @@ def create_dataframe(self) -> pd.DataFrame:
5050
"""Create Pandas dataframe."""
5151
df_size = 100 if self.same_rows else 200
5252
rng = np.random.default_rng()
53+
letters = list(string.ascii_lowercase)
5354

5455
diction_1 = {
5556
"A": list(range(df_size)),
56-
"B": [rng.choice(string.ascii_letters) for i in range(df_size)],
57+
"B": [rng.choice(letters) for i in range(df_size)],
5758
"C": rng.integers(low=1, high=100, size=df_size),
5859
"D": rng.normal(0.0, 1.0, size=df_size),
5960
}

0 commit comments

Comments
 (0)