From 6698e1fb809342bb9becc3bee8f0ebb5365a93fa Mon Sep 17 00:00:00 2001 From: CyrilFerlicot Date: Wed, 18 Dec 2024 17:42:29 +0100 Subject: [PATCH] Fix test --- .../FamixPythonProject1Test.class.st | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Famix-Python-Importer-Tests/FamixPythonProject1Test.class.st b/src/Famix-Python-Importer-Tests/FamixPythonProject1Test.class.st index a61fc0b..3404ddb 100644 --- a/src/Famix-Python-Importer-Tests/FamixPythonProject1Test.class.st +++ b/src/Famix-Python-Importer-Tests/FamixPythonProject1Test.class.st @@ -859,9 +859,9 @@ FamixPythonProject1Test >> testFunctionSourceAnchor [ self assert: function sourceAnchor isNotNil. self assert: function sourceText equals: ('def sort_list(list1, list2): - zipped_pairs = zip(list2, list1) - z = [x for _, x in sorted(zipped_pairs)] - return z' copyReplaceAll: String cr with: String lf) + zipped_pairs = zip(list2, list1) + z = [x for _, x in sorted(zipped_pairs)] + return z' copyReplaceAll: String cr with: String lf) ] { #category : 'tests - functions' }