diff --git a/test/screens/metering/bloc_metering_test.dart b/test/screens/metering/bloc_metering_test.dart index 0daf62c..6d093b3 100644 --- a/test/screens/metering/bloc_metering_test.dart +++ b/test/screens/metering/bloc_metering_test.dart @@ -50,7 +50,7 @@ void main() { }); group( - '`MeasureEvent` tests', + '`MeasureEvent`', () { blocTest( '`MeasureEvent` -> success', @@ -144,7 +144,7 @@ void main() { ); group( - '`IsoChangedEvent` tests', + '`IsoChangedEvent`', () { blocTest( 'Pick different ISO (ev100 != null)', @@ -263,7 +263,7 @@ void main() { ); group( - '`NdChangedEvent` tests', + '`NdChangedEvent`', () { blocTest( 'Pick different ND (ev100 != null)', @@ -378,7 +378,7 @@ void main() { ); group( - '`FilmChangedEvent` tests', + '`FilmChangedEvent`', () { blocTest( 'Pick different film with different ISO', @@ -487,7 +487,7 @@ void main() { // TODO(vodemn): when this feautre is enabled // group( - // '`EquipmentProfileChangedEvent` tests', + // '`EquipmentProfileChangedEvent`', // () { // // }, diff --git a/test/screens/metering/communication/bloc_communication_metering_test.dart b/test/screens/metering/communication/bloc_communication_metering_test.dart index c846b33..3272745 100644 --- a/test/screens/metering/communication/bloc_communication_metering_test.dart +++ b/test/screens/metering/communication/bloc_communication_metering_test.dart @@ -16,7 +16,7 @@ void main() { }); group( - '`MeasureEvent` tests', + '`MeasureEvent`', () { blocTest( 'Multiple consequtive measure events', @@ -60,7 +60,7 @@ void main() { ); group( - '`MeteringInProgressEvent` tests', + '`MeteringInProgressEvent`', () { blocTest( 'Multiple consequtive in progress events', @@ -83,7 +83,7 @@ void main() { ); group( - '`MeteringEndedEvent` tests', + '`MeteringEndedEvent`', () { blocTest( 'Multiple consequtive ended events', diff --git a/test/screens/metering/components/camera/bloc_container_camera_test.dart b/test/screens/metering/components/camera/bloc_container_camera_test.dart index c3c93c3..911a112 100644 --- a/test/screens/metering/components/camera/bloc_container_camera_test.dart +++ b/test/screens/metering/components/camera/bloc_container_camera_test.dart @@ -119,7 +119,7 @@ void main() { }); group( - '`RequestPermissionEvent` tests', + '`RequestPermissionEvent`', () { blocTest( 'Request denied', @@ -176,7 +176,7 @@ void main() { ); group( - '`InitializeEvent`/`DeinitializeEvent` tests', + '`InitializeEvent`/`DeinitializeEvent`', () { blocTest( 'No cameras detected error', @@ -269,7 +269,7 @@ void main() { ); group( - '`_takePicture()` tests', + '`_takePicture()`', () { blocTest( 'Returned ev100 == null', @@ -325,7 +325,7 @@ void main() { ); group( - '`ZoomChangedEvent` tests', + '`ZoomChangedEvent`', () { blocTest( 'Set zoom multiple times', @@ -372,7 +372,7 @@ void main() { ); group( - '`ExposureOffsetChangedEvent`/`ExposureOffsetResetEvent` tests', + '`ExposureOffsetChangedEvent`/`ExposureOffsetResetEvent`', () { blocTest( 'Set exposure offset multiple times and reset', diff --git a/test/screens/metering/components/light_sensor/bloc_container_light_sensor_test.dart b/test/screens/metering/components/light_sensor/bloc_container_light_sensor_test.dart index 1cf1cc8..f60a79e 100644 --- a/test/screens/metering/components/light_sensor/bloc_container_light_sensor_test.dart +++ b/test/screens/metering/components/light_sensor/bloc_container_light_sensor_test.dart @@ -39,7 +39,7 @@ void main() { }); group( - '`LuxMeteringEvent` tests', + '`LuxMeteringEvent`', () { const List luxIterable = [1, 2, 2, 2, 3]; final List resultList = luxIterable.map((lux) => log2(lux / 2.5)).toList();