Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardoboss committed Feb 9, 2024
1 parent f600e62 commit c86112e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions test/seq_in_memory_cache_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ import 'package:dart_seq/dart_seq.dart';
import 'package:test/test.dart';

void main() {
group('In memory cache', ()
{
group('In memory cache', () {
test('Record', () async {
// Arrange
final cache = SeqInMemoryCache();
Expand Down
3 changes: 2 additions & 1 deletion test/seq_response_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import 'package:test/test.dart';

void main() {
test('Seq Response decoding', () {
const json = '{"MinimumLevelAccepted": "Information", "Error": "test error"}';
const json =
'{"MinimumLevelAccepted": "Information", "Error": "test error"}';
final map = jsonDecode(json) as Map<String, dynamic>;

final response = SeqResponse.fromJson(map);
Expand Down

0 comments on commit c86112e

Please sign in to comment.