From a6ccd38a36dafca7d0ea48cbe9d9c35d0c4dad43 Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Sun, 29 Nov 2020 15:04:58 +0100 Subject: Remove all empty txt file in functional tests Also fix some superfluous lines encountered along the way --- .../functional/a/assignment_from_no_return_py3.txt | 0 tests/functional/c/crash_missing_module_type.txt | 0 tests/functional/f/fallback_import_disabled.txt | 0 tests/functional/f/formatting.txt | 0 tests/functional/g/genexp_in_class_scope.txt | 0 tests/functional/i/implicit_str_concat_latin1.txt | 0 tests/functional/i/implicit_str_concat_utf8.txt | 0 tests/functional/i/invalid_metaclass.txt | 0 tests/functional/i/invalid_metaclass_py3.txt | 0 tests/functional/l/long_utf8_lines.txt | 0 .../m/missing_module_docstring_disabled.txt | 0 tests/functional/m/missing_self_argument.txt | 3 -- tests/functional/m/monkeypatch_method.txt | 0 tests/functional/n/no_self_use_py3.txt | 0 .../n/not_async_context_manager_py37.txt | 0 .../p/postponed_evaluation_activated.txt | 0 tests/functional/r/raising_self.txt | 0 tests/functional/r/recursion_error_2667.txt | 0 tests/functional/r/recursion_error_crash.txt | 0 tests/functional/r/recursion_error_crash_2683.txt | 0 .../r/recursion_error_crash_astroid_623.txt | 0 .../r/regression_no_value_for_parameter.txt | 0 tests/functional/s/statement_without_effect.txt | 48 ---------------------- tests/functional/too/too_few_public_methods_37.txt | 0 .../too/too_many_arguments_issue_1045.txt | 0 .../u/ungrouped_imports_isort_compatible.txt | 0 tests/functional/u/unused_variable_py36.txt | 0 .../wrong_import_position_exclude_dunder_main.txt | 0 28 files changed, 51 deletions(-) delete mode 100644 tests/functional/a/assignment_from_no_return_py3.txt delete mode 100644 tests/functional/c/crash_missing_module_type.txt delete mode 100644 tests/functional/f/fallback_import_disabled.txt delete mode 100644 tests/functional/f/formatting.txt delete mode 100644 tests/functional/g/genexp_in_class_scope.txt delete mode 100644 tests/functional/i/implicit_str_concat_latin1.txt delete mode 100644 tests/functional/i/implicit_str_concat_utf8.txt delete mode 100644 tests/functional/i/invalid_metaclass.txt delete mode 100644 tests/functional/i/invalid_metaclass_py3.txt delete mode 100644 tests/functional/l/long_utf8_lines.txt delete mode 100644 tests/functional/m/missing_module_docstring_disabled.txt delete mode 100644 tests/functional/m/monkeypatch_method.txt delete mode 100644 tests/functional/n/no_self_use_py3.txt delete mode 100644 tests/functional/n/not_async_context_manager_py37.txt delete mode 100644 tests/functional/p/postponed_evaluation_activated.txt delete mode 100644 tests/functional/r/raising_self.txt delete mode 100644 tests/functional/r/recursion_error_2667.txt delete mode 100644 tests/functional/r/recursion_error_crash.txt delete mode 100644 tests/functional/r/recursion_error_crash_2683.txt delete mode 100644 tests/functional/r/recursion_error_crash_astroid_623.txt delete mode 100644 tests/functional/r/regression_no_value_for_parameter.txt delete mode 100644 tests/functional/too/too_few_public_methods_37.txt delete mode 100644 tests/functional/too/too_many_arguments_issue_1045.txt delete mode 100644 tests/functional/u/ungrouped_imports_isort_compatible.txt delete mode 100644 tests/functional/u/unused_variable_py36.txt delete mode 100644 tests/functional/w/wrong_import_position_exclude_dunder_main.txt diff --git a/tests/functional/a/assignment_from_no_return_py3.txt b/tests/functional/a/assignment_from_no_return_py3.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/c/crash_missing_module_type.txt b/tests/functional/c/crash_missing_module_type.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/f/fallback_import_disabled.txt b/tests/functional/f/fallback_import_disabled.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/f/formatting.txt b/tests/functional/f/formatting.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/g/genexp_in_class_scope.txt b/tests/functional/g/genexp_in_class_scope.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/i/implicit_str_concat_latin1.txt b/tests/functional/i/implicit_str_concat_latin1.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/i/implicit_str_concat_utf8.txt b/tests/functional/i/implicit_str_concat_utf8.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/i/invalid_metaclass.txt b/tests/functional/i/invalid_metaclass.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/i/invalid_metaclass_py3.txt b/tests/functional/i/invalid_metaclass_py3.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/l/long_utf8_lines.txt b/tests/functional/l/long_utf8_lines.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/m/missing_module_docstring_disabled.txt b/tests/functional/m/missing_module_docstring_disabled.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/m/missing_self_argument.txt b/tests/functional/m/missing_self_argument.txt index 9a47c8914..ad0db0186 100644 --- a/tests/functional/m/missing_self_argument.txt +++ b/tests/functional/m/missing_self_argument.txt @@ -1,6 +1,3 @@ no-method-argument:12:MyClass.method:Method has no argument -no-method-argument:14:MyClass.met:"""Method has no argument -"" -" no-method-argument:15:MyClass.setup:Method has no argument undefined-variable:17:MyClass.setup:Undefined variable 'self' diff --git a/tests/functional/m/monkeypatch_method.txt b/tests/functional/m/monkeypatch_method.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/n/no_self_use_py3.txt b/tests/functional/n/no_self_use_py3.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/n/not_async_context_manager_py37.txt b/tests/functional/n/not_async_context_manager_py37.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/p/postponed_evaluation_activated.txt b/tests/functional/p/postponed_evaluation_activated.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/r/raising_self.txt b/tests/functional/r/raising_self.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/r/recursion_error_2667.txt b/tests/functional/r/recursion_error_2667.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/r/recursion_error_crash.txt b/tests/functional/r/recursion_error_crash.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/r/recursion_error_crash_2683.txt b/tests/functional/r/recursion_error_crash_2683.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/r/recursion_error_crash_astroid_623.txt b/tests/functional/r/recursion_error_crash_astroid_623.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/r/regression_no_value_for_parameter.txt b/tests/functional/r/regression_no_value_for_parameter.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/s/statement_without_effect.txt b/tests/functional/s/statement_without_effect.txt index bda6eaea9..f9c22b1bd 100644 --- a/tests/functional/s/statement_without_effect.txt +++ b/tests/functional/s/statement_without_effect.txt @@ -1,60 +1,12 @@ pointless-string-statement:5::String statement has no effect -pointless-statement:6::"""Statement seems to have no effect -"" -" -pointless-statement:8::"""Statement seems to have no effect -"" -" pointless-statement:9::Statement seems to have no effect pointless-statement:11::Statement seems to have no effect -pointless-statement:12::"""Statement seems to have no effect -"" -" pointless-statement:15::Statement seems to have no effect -pointless-string-statement:15::"""String statement has no effect -"" -" -unnecessary-semicolon:17::"""Unnecessary semicolon -"" -" pointless-string-statement:18::String statement has no effect -unnecessary-semicolon:18::"""Unnecessary semicolon -"" -" -expression-not-assigned:19::"""Expression """"list() and tuple()"""" is assigned to nothing -"" -" -expression-not-assigned:20::"""Expression """"list() and tuple()"""" is assigned to nothing -"" -" unnecessary-semicolon:21::Unnecessary semicolon expression-not-assigned:23::"Expression ""list() and tuple()"" is assigned to nothing" -expression-not-assigned:26::"""Expression """"ANSWER == to_be()"""" is assigned to nothing -"" -" -expression-not-assigned:27::"""Expression """"ANSWER == to_be()"""" is assigned to nothing -"" -" -expression-not-assigned:28::"""Expression """"to_be() or not to_be()"""" is assigned to nothing -"" -" -expression-not-assigned:29::"""Expression """"to_be() or not to_be()"""" is assigned to nothing -"" -" expression-not-assigned:30::"Expression ""ANSWER == to_be()"" is assigned to nothing" expression-not-assigned:32::"Expression ""to_be() or not to_be()"" is assigned to nothing" expression-not-assigned:33::"Expression ""to_be().title"" is assigned to nothing" -pointless-string-statement:54:ClassLevelAttributeTest.__init__:"""String statement has no effect -"" -" -pointless-string-statement:55:ClassLevelAttributeTest.__init__:"""String statement has no effect -"" -" pointless-string-statement:58:ClassLevelAttributeTest.__init__:String statement has no effect -pointless-string-statement:61:ClassLevelAttributeTest.test:"""String statement has no effect -"" -" -pointless-string-statement:62:ClassLevelAttributeTest.test:"""String statement has no effect -"" -" pointless-string-statement:65:ClassLevelAttributeTest.test:String statement has no effect diff --git a/tests/functional/too/too_few_public_methods_37.txt b/tests/functional/too/too_few_public_methods_37.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/too/too_many_arguments_issue_1045.txt b/tests/functional/too/too_many_arguments_issue_1045.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/u/ungrouped_imports_isort_compatible.txt b/tests/functional/u/ungrouped_imports_isort_compatible.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/u/unused_variable_py36.txt b/tests/functional/u/unused_variable_py36.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/tests/functional/w/wrong_import_position_exclude_dunder_main.txt b/tests/functional/w/wrong_import_position_exclude_dunder_main.txt deleted file mode 100644 index e69de29bb..000000000 -- cgit v1.2.1