Skip to content

Commit

Permalink
chore: dart format for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
cybertronbaka committed Oct 30, 2023
1 parent 236e233 commit 2eba9a7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/src/services/console.dart
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class Console {
return ' ' * cache.loopCount.fetch;
}

String? readLineSync(){
String? readLineSync() {
return iSink.readLineSync();
}

Expand Down
6 changes: 3 additions & 3 deletions test/commands/init_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import 'package:test/test.dart';
import '../mocks/mocks.dart';
import '../test_utils/project_creator.dart';

void main(){
group('commands:init', (){
void main() {
group('commands:init', () {
test('creates a loki.yaml file', () async {
final stdin = MockStdin();
console = Console(StringBuffer(), stdin);
Expand Down Expand Up @@ -66,4 +66,4 @@ void main(){
}
});
});
}
}
2 changes: 1 addition & 1 deletion test/mocks/mocks.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ class MockDevicesFilter extends Mock implements DevicesFilter {}

class MockProcessManager extends Mock implements ProcessManager {}

class MockStdin extends Mock implements Stdin {}
class MockStdin extends Mock implements Stdin {}
2 changes: 1 addition & 1 deletion test/test_utils/project_creator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,4 @@ class FileUtils {

file.deleteSync(recursive: true);
}
}
}

0 comments on commit 2eba9a7

Please sign in to comment.