Skip to content

Commit

Permalink
Fix property name to be snake_case
Browse files Browse the repository at this point in the history
  • Loading branch information
Stormheg committed Nov 30, 2024
1 parent cba58e7 commit b4cf4e5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/e2e/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class VirtualAuthenticator:
is_user_verified: bool
default_backup_eligibility: bool
default_backup_state: bool
automaticPresenceSimulation: bool
automatic_presence_simulation: bool

def as_cdp_options(self) -> dict:
return {
Expand All @@ -35,7 +35,7 @@ def as_cdp_options(self) -> dict:
"isUserVerified": self.is_user_verified,
"defaultBackupEligibility": self.default_backup_eligibility,
"defaultBackupState": self.default_backup_state,
"automaticPresenceSimulation": self.automaticPresenceSimulation,
"automaticPresenceSimulation": self.automatic_presence_simulation,
}

@classmethod
Expand All @@ -48,7 +48,7 @@ def internal(cls):
is_user_verified=True,
default_backup_eligibility=True,
default_backup_state=False,
automaticPresenceSimulation=True,
automatic_presence_simulation=True,
)

@classmethod
Expand All @@ -61,5 +61,5 @@ def u2f(cls):
is_user_verified=False,
default_backup_eligibility=False,
default_backup_state=False,
automaticPresenceSimulation=True,
automatic_presence_simulation=True,
)

0 comments on commit b4cf4e5

Please sign in to comment.