Skip to content

Commit d68d7d7

Browse files
committed
Change test_serena_agent to use CPP instead of CPP_CCLS
The CPP_CCLS tests are disabled on Windows.
1 parent 55844fb commit d68d7d7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/serena/test_serena_agent.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def serena_config():
4747
Language.CLOJURE,
4848
Language.FSHARP,
4949
Language.POWERSHELL,
50-
Language.CPP_CCLS,
50+
Language.CPP,
5151
Language.HAXE,
5252
Language.LEAN4,
5353
Language.MSL,
@@ -200,7 +200,7 @@ def test_find_symbol_within_php_file(self, serena_agent: SerenaAgent) -> None:
200200
pytest.param(Language.CLOJURE, "greet", "Function", clj.CORE_PATH, marks=pytest.mark.clojure),
201201
pytest.param(Language.CSHARP, "Calculator", "Class", "Program.cs", marks=pytest.mark.csharp),
202202
pytest.param(Language.POWERSHELL, "Greet-User", "Function", "main.ps1", marks=pytest.mark.powershell),
203-
pytest.param(Language.CPP_CCLS, "add", "Function", "b.cpp", marks=pytest.mark.cpp),
203+
pytest.param(Language.CPP, "add", "Function", "b.cpp", marks=pytest.mark.cpp),
204204
pytest.param(Language.HAXE, "Main", "Class", "Main.hx", marks=pytest.mark.haxe),
205205
pytest.param(Language.LEAN4, "add", "Method", "Helper.lean", marks=pytest.mark.lean4),
206206
pytest.param(Language.MSL, "greet", "Function", "main.mrc", marks=pytest.mark.msl),
@@ -303,7 +303,7 @@ def contains_ref_with_relative_path(refs, relative_path):
303303
),
304304
pytest.param(Language.CSHARP, "Calculator", "Program.cs", "Program.cs", marks=pytest.mark.csharp),
305305
pytest.param(Language.POWERSHELL, "Greet-User", "main.ps1", "main.ps1", marks=pytest.mark.powershell),
306-
pytest.param(Language.CPP_CCLS, "add", "b.cpp", "a.cpp", marks=pytest.mark.cpp),
306+
pytest.param(Language.CPP, "add", "b.cpp", "a.cpp", marks=pytest.mark.cpp),
307307
pytest.param(
308308
Language.HAXE,
309309
"addNumbers",

0 commit comments

Comments
 (0)