File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ import 'package:ht_kv_storage_service/src/ht_kv_storage_service.dart';
99/// getter to access the underlying string representation for storage.
1010/// {@endtemplate}
1111enum StorageKey {
12- /// Key for storing the authentication token needed for interraction with tha backend API.
12+ /// Key for storing the authentication token needed for interraction with
13+ /// the backend API.
1314 authToken,
1415
1516 /// Key for storing a boolean flag indicating whether the user has completed
Original file line number Diff line number Diff line change @@ -7,10 +7,7 @@ void main() {
77 group ('StorageKey Enum' , () {
88 test ('stringValue getter returns correct values' , () {
99 // Check the stringValue getter for each enum member
10- expect (
11- StorageKey .authToken.stringValue,
12- equals ('auth_token' ),
13- );
10+ expect (StorageKey .authToken.stringValue, equals ('auth_token' ));
1411 expect (
1512 StorageKey .hasSeenOnboarding.stringValue,
1613 equals ('has_seen_onboarding' ),
You can’t perform that action at this time.
0 commit comments