Skip to content

Commit c451604

Browse files
committed
style: misc
1 parent 92b2dc5 commit c451604

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

lib/src/storage_keys.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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}
1111
enum 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

test/src/storage_keys_test.dart

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff 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'),

0 commit comments

Comments
 (0)