From 63a88c873f3643aad9208488765dc53618edd40e Mon Sep 17 00:00:00 2001 From: Jędrzej Boczar Date: Thu, 22 Apr 2021 20:53:30 +0200 Subject: move all tests to top-level tests/ directory --- tests/indent/python/basic_collections.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tests/indent/python/basic_collections.py (limited to 'tests/indent/python/basic_collections.py') diff --git a/tests/indent/python/basic_collections.py b/tests/indent/python/basic_collections.py new file mode 100644 index 000000000..1582b9059 --- /dev/null +++ b/tests/indent/python/basic_collections.py @@ -0,0 +1,23 @@ +# list +a = [ + 1, 2, + 3 +] + +# set +b = { + 3, + 4, +} + +# dict +c = { + 'a': 'b', + 'c': 1, +} + +# tuple +d = ( + 1, + 2, +) -- cgit v1.2.3-70-g09d2