From c0bbaae614d0b4ce0b4f2503116edbfd4e19c752 Mon Sep 17 00:00:00 2001 From: hrishikeshio Date: Thu, 10 Apr 2025 09:04:39 +0000 Subject: [PATCH 1/4] E2E test: Add initial complex files --- e2e_complex_file_1.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 e2e_complex_file_1.txt diff --git a/e2e_complex_file_1.txt b/e2e_complex_file_1.txt new file mode 100644 index 0000000..992603c --- /dev/null +++ b/e2e_complex_file_1.txt @@ -0,0 +1,7 @@ +Line 1: Initial content. +Line 2: This line will be modified. +Line 3: Some context here. +Line 4: This line will be deleted. +Line 5: More context. +Line 6: Even more context. +Line 7: Final initial line. From 056e19064493ab8ddc53902f702a281d0d8c9ba0 Mon Sep 17 00:00:00 2001 From: hrishikeshio Date: Thu, 10 Apr 2025 09:04:41 +0000 Subject: [PATCH 2/4] E2E test: Add initial complex files --- e2e_complex_file_2.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 e2e_complex_file_2.py diff --git a/e2e_complex_file_2.py b/e2e_complex_file_2.py new file mode 100644 index 0000000..a9fc32b --- /dev/null +++ b/e2e_complex_file_2.py @@ -0,0 +1,7 @@ +def simple_function(a, b): + # Initial comment + result = a + b + print(f"The result is: {result}") + return result + +# Line after function From 87679927ba5629498618d9466ce367910b68c9e2 Mon Sep 17 00:00:00 2001 From: hrishikeshio Date: Thu, 10 Apr 2025 09:04:44 +0000 Subject: [PATCH 3/4] E2E test: Update complex files --- e2e_complex_file_1.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/e2e_complex_file_1.txt b/e2e_complex_file_1.txt index 992603c..2a0630d 100644 --- a/e2e_complex_file_1.txt +++ b/e2e_complex_file_1.txt @@ -1,7 +1,8 @@ Line 1: Initial content. -Line 2: This line will be modified. +Line 2: This line has been modified significantly. Line 3: Some context here. -Line 4: This line will be deleted. +# Line 4 deleted Line 5: More context. -Line 6: Even more context. +Line 6: Even more context - adding modification here too. Line 7: Final initial line. +Line 8: Added a new line near the end. From 62fada411e063f1e3eb9cc7c87d2aa4d8a2efc26 Mon Sep 17 00:00:00 2001 From: hrishikeshio Date: Thu, 10 Apr 2025 09:04:46 +0000 Subject: [PATCH 4/4] E2E test: Update complex files --- e2e_complex_file_2.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/e2e_complex_file_2.py b/e2e_complex_file_2.py index a9fc32b..f2ee36a 100644 --- a/e2e_complex_file_2.py +++ b/e2e_complex_file_2.py @@ -1,7 +1,10 @@ -def simple_function(a, b): - # Initial comment - result = a + b - print(f"The result is: {result}") +def complex_function(param_a, param_b): # Renamed function and params + # Initial comment remains + # Added another comment + intermediate = param_a * 2 # Changed logic slightly + result = intermediate + param_b # Use new variable + print(f"The complex result is: {result}") # Modified print return result # Line after function +# Added another line unrelated