Matt Rubens 1 year ago
parent
commit
7163b173e8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/core/diff/strategies/__tests__/search-replace.test.ts

+ 2 - 2
src/core/diff/strategies/__tests__/search-replace.test.ts

@@ -1519,8 +1519,8 @@ function two() {
 
         it('should document start_line and end_line parameters', () => {
             const description = strategy.getToolDescription('/test')
-            expect(description).toContain('start_line: (required) The line number where the search block starts (inclusive).')
-            expect(description).toContain('end_line: (required) The line number where the search block ends (inclusive).')
+            expect(description).toContain('start_line: (required) The line number where the search block starts.')
+            expect(description).toContain('end_line: (required) The line number where the search block ends.')
         })
     })
 })