From 3eeed2783f09ede0ddfb17b4d11a9eae35b258a1 Mon Sep 17 00:00:00 2001 From: hrishikeshio Date: Thu, 10 Apr 2025 11:07:24 +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 9b81b300a54f4bb5907ddf491e69c353ec9ac13d Mon Sep 17 00:00:00 2001 From: hrishikeshio Date: Thu, 10 Apr 2025 11:07:26 +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 67a5163ae6d2c9d83c41e3c4af83cd2bb69c980a Mon Sep 17 00:00:00 2001 From: hrishikeshio Date: Thu, 10 Apr 2025 11:07:28 +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 0424ad3cdcd6efdc3520633d3d5504568761b7fa Mon Sep 17 00:00:00 2001 From: hrishikeshio Date: Thu, 10 Apr 2025 11:07:30 +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