Skip to content

Commit

Permalink
fix: remove unused variables and replace string literal
Browse files Browse the repository at this point in the history
  • Loading branch information
tylfin committed Jan 27, 2025
1 parent f45baa2 commit 778d018
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/debugger/test_debugger_expression_language.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def _validate_expression_language_messages(self, expected_message_map):
def setup_expression_language_access_variables(self):
language, method = self.get_tracer()["language"], "Expression"
message_map, probes = self._create_expression_probes(
methodName="Expression",
methodName=method,
expressions=[
["Accessing input", "asd", Dsl("ref", "inputValue")],
["Accessing local", 3, Dsl("ref", "localValue")],
Expand Down Expand Up @@ -101,7 +101,6 @@ def test_expression_language_access_variables(self):
self._assert(expected_response=200)

def setup_expression_language_contextual_variables(self):
language, method = self.get_tracer()["language"], "Expression"
message_map, probes = self._create_expression_probes(
methodName="Expression",
expressions=[
Expand Down

0 comments on commit 778d018

Please sign in to comment.