From 63a88c873f3643aad9208488765dc53618edd40e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Boczar?= Date: Thu, 22 Apr 2021 20:53:30 +0200 Subject: move all tests to top-level tests/ directory --- lua/tests/indent/python/basic_collections.py | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 lua/tests/indent/python/basic_collections.py (limited to 'lua/tests/indent/python/basic_collections.py') diff --git a/lua/tests/indent/python/basic_collections.py b/lua/tests/indent/python/basic_collections.py deleted file mode 100644 index 1582b905..00000000 --- a/lua/tests/indent/python/basic_collections.py +++ /dev/null @@ -1,23 +0,0 @@ -# list -a = [ - 1, 2, - 3 -] - -# set -b = { - 3, - 4, -} - -# dict -c = { - 'a': 'b', - 'c': 1, -} - -# tuple -d = ( - 1, - 2, -) -- cgit v1.2.3