diff --git a/frontend/pages/test.tsx b/frontend/pages/test.tsx
index eb5f66a4..a0754188 100644
--- a/frontend/pages/test.tsx
+++ b/frontend/pages/test.tsx
@@ -46,7 +46,7 @@ const Test: NextPage = () => {
{hasTested ? (
- Your wallet has already been tested succesfully.
+ Your wallet has already been tested successfully.
) : (
diff --git a/staking/integration-tests/tests/claim.rs b/staking/integration-tests/tests/claim.rs
index 3fa9f8c8..9906c174 100644
--- a/staking/integration-tests/tests/claim.rs
+++ b/staking/integration-tests/tests/claim.rs
@@ -148,7 +148,7 @@ fn test_claim() {
let pool_data: PoolData = fetch_account_data_bytemuck(&mut svm, &pool_data_pubkey);
assert_eq!(pool_data.claimable_rewards, 0);
- // duting epoch x + 2, the reward for epoch x + 1 can be claimed
+ // during epoch x + 2, the reward for epoch x + 1 can be claimed
// y = YIELD, cap = 0.5 PYTH, delegated = 1 PYTH
// reward = cap * YIELD
assert_eq!(custody_data.amount, STAKED_TOKENS + YIELD * 1 / 2);