Skip to content

Commit

Permalink
Remove prints, correct test name
Browse files Browse the repository at this point in the history
  • Loading branch information
camsim99 committed Oct 1, 2024
1 parent e226883 commit fac23cc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public void isPreviewPreTransformed_returnsTrueWhenRunningSdk28() {

@Test
@Config(sdk = 29)
public void isPreviewPreTransformed_returnsFalseWhenRunningAboveSdk29() {
public void isPreviewPreTransformed_returnsFalseWhenRunningAboveSdk28() {
final SystemServicesHostApiImpl systemServicesHostApi =
new SystemServicesHostApiImpl(mockBinaryMessenger, mockInstanceManager, mockContext);
assertFalse(systemServicesHostApi.isPreviewPreTransformed());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -913,10 +913,6 @@ class AndroidCameraCameraX extends CameraPlatform {
naturalDeviceOrientationDegrees * signForCameraDirection +
360) %
360;
print('sensorOrientaiton: $sensorOrientation');
print('naturalDeviceOrientationDegrees $naturalDeviceOrientationDegrees');
print('signForCameraDirection: $signForCameraDirection');
print('rotation $rotation');
int quarterTurnsToCorrectPreview = rotation ~/ 90;

if (naturalOrientation == DeviceOrientation.landscapeLeft ||
Expand Down

0 comments on commit fac23cc

Please sign in to comment.