Skip to content

Commit

Permalink
Fixing enum accessor in UTs
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanMullins committed Sep 17, 2024
1 parent dc96cff commit daa6f69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lit_nlp/examples/gcp/model_server_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ def setUpClass(cls):
}],
),
dict(
testcase_name=lit_gcp_constants.LlmHTTPEndpoints.TOKENIZE,
endpoint=f'/{lit_gcp_constants.LlmHTTPEndpoints.TOKENIZE}',
testcase_name=lit_gcp_constants.LlmHTTPEndpoints.TOKENIZE.value,
endpoint=f'/{lit_gcp_constants.LlmHTTPEndpoints.TOKENIZE.value}',
expected=[{'tokens': ['test', 'output', 'text']}],
),
)
Expand Down

0 comments on commit daa6f69

Please sign in to comment.