Skip to content

Commit

Permalink
fix: hmt abbreviation switched back to upper case
Browse files Browse the repository at this point in the history
  • Loading branch information
Dzeranov committed Nov 1, 2024
1 parent 1a6cfc8 commit b0df80a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from src.core.types import Networks, TaskTypes
from src.utils.enums import BetterEnumMeta

DEFAULT_TOKEN = "hmt" # noqa: S105 (it's not a credential)
DEFAULT_TOKEN = "HMT" # noqa: S105 (it's not a credential)


class JobStatuses(StrEnum, metaclass=BetterEnumMeta):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ def test_can_list_jobs_200_check_values(client: TestClient, session: Session) ->
"status": APIJobStatuses.active,
"job_description": manifest["annotation"]["description"],
"reward_amount": manifest["job_bounty"],
"reward_token": "hmt",
"reward_token": "HMT",
"created_at": cvat_project.created_at.isoformat().replace("+00:00", "Z"),
"updated_at": cvat_first_job.task.project.updated_at.isoformat().replace("+00:00", "Z"),
"qualifications": manifest.get("qualifications", []),
Expand Down

0 comments on commit b0df80a

Please sign in to comment.