From d4e11b12a7e94f2c253622540fd2af0a503f64d4 Mon Sep 17 00:00:00 2001 From: rosagold Date: Wed, 13 Jan 2021 21:12:57 +0100 Subject: [PATCH] BUG: tiny fix in tests i guess its not serious --- pandas/tests/indexing/test_chaining_and_caching.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/tests/indexing/test_chaining_and_caching.py b/pandas/tests/indexing/test_chaining_and_caching.py index 0047b396c68b0..119091657223a 100644 --- a/pandas/tests/indexing/test_chaining_and_caching.py +++ b/pandas/tests/indexing/test_chaining_and_caching.py @@ -36,7 +36,7 @@ def test_setitem_cache_updating(self): # GH 5424 cont = ["one", "two", "three", "four", "five", "six", "seven"] - for do_ref in [False, False]: + for do_ref in [True, False]: df = DataFrame({"a": cont, "b": cont[3:] + cont[:3], "c": np.arange(7)}) # ref the cache