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 --- lua/tests/indent/python/comprehensions.py | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 lua/tests/indent/python/comprehensions.py (limited to 'lua/tests/indent/python/comprehensions.py') diff --git a/lua/tests/indent/python/comprehensions.py b/lua/tests/indent/python/comprehensions.py deleted file mode 100644 index 53c3961e1..000000000 --- a/lua/tests/indent/python/comprehensions.py +++ /dev/null @@ -1,25 +0,0 @@ -# list -a = [ - x + 1 for x in range(3) -] - -# dict -b = { - x: x + 1 for x in range(3) -} - -# generator -c = ( - x * x for x in range(3) -) - -# set -d = { - x + x for x in range(3) -} - -# other styles -e = [ - x + 1 for x - in range(3) -] -- cgit v1.2.3-70-g09d2