You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/amazonq/codewhisperer/jetbrains-community/tst/software/aws/toolkits/jetbrains/services/codewhisperer/codescan/CodeWhispererProjectCodeScanTest.kt
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -113,7 +113,7 @@ class CodeWhispererProjectCodeScanTest : CodeWhispererCodeScanTestBase(PythonCod
113
113
val testModule2 = projectRule.fixture.addModule("testModule2")
114
114
testCs = projectRule.fixture.addFileToModule(
115
115
testModule,
116
-
"Test.cs",
116
+
"/Test.cs",
117
117
"""
118
118
using Utils;
119
119
using Helpers.Helper;
@@ -131,7 +131,7 @@ class CodeWhispererProjectCodeScanTest : CodeWhispererCodeScanTestBase(PythonCod
131
131
132
132
utilsCs = projectRule.fixture.addFileToModule(
133
133
testModule,
134
-
"Utils.cs",
134
+
"/Utils.cs",
135
135
"""
136
136
public static class Utils
137
137
{
@@ -157,7 +157,7 @@ class CodeWhispererProjectCodeScanTest : CodeWhispererCodeScanTestBase(PythonCod
157
157
158
158
helperCs = projectRule.fixture.addFileToModule(
159
159
testModule,
160
-
"Helpers/Helper.cs",
160
+
"/Helpers/Helper.cs",
161
161
"""
162
162
public static class Helper
163
163
{
@@ -201,7 +201,7 @@ class CodeWhispererProjectCodeScanTest : CodeWhispererCodeScanTestBase(PythonCod
201
201
202
202
helpGo = projectRule.fixture.addFileToModule(
203
203
testModule,
204
-
"help.go",
204
+
"/help.go",
205
205
"""
206
206
package main
207
207
@@ -217,7 +217,7 @@ class CodeWhispererProjectCodeScanTest : CodeWhispererCodeScanTestBase(PythonCod
217
217
218
218
utilsJs = projectRule.fixture.addFileToModule(
219
219
testModule,
220
-
"utils.js",
220
+
"/utils.js",
221
221
"""
222
222
function add(num1, num2) {
223
223
return num1 + num2;
@@ -247,7 +247,7 @@ class CodeWhispererProjectCodeScanTest : CodeWhispererCodeScanTestBase(PythonCod
247
247
248
248
testJson = projectRule.fixture.addFileToModule(
249
249
testModule,
250
-
"helpers/test3Json.json",
250
+
"/helpers/test3Json.json",
251
251
"""
252
252
{
253
253
"AWSTemplateFormatVersion": "2010-09-09",
@@ -303,7 +303,7 @@ class CodeWhispererProjectCodeScanTest : CodeWhispererCodeScanTestBase(PythonCod
303
303
304
304
helperPy = projectRule.fixture.addFileToModule(
305
305
testModule,
306
-
"helpers/helper.py",
306
+
"/helpers/helper.py",
307
307
"""
308
308
from helpers import helper as h
309
309
def subtract(num1, num2)
@@ -319,13 +319,13 @@ class CodeWhispererProjectCodeScanTest : CodeWhispererCodeScanTestBase(PythonCod
Copy file name to clipboardExpand all lines: plugins/core/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/FeatureDevSessionContext.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -124,7 +124,7 @@ class FeatureDevSessionContext(val project: Project, val maxProjectSizeBytes: Lo
0 commit comments