Index: tests/qunit/wp-admin/js/customize-header.js
===================================================================
--- tests/qunit/wp-admin/js/customize-header.js	(revision 38443)
+++ tests/qunit/wp-admin/js/customize-header.js	(working copy)
@@ -63,12 +63,12 @@
 		equal(this.model.shouldBeCropped(), false);
 	});
 
-	test('should be cropped when the image has the same dimensions of the theme image', function() {
+	test('should be cropped when the image width is greater than the theme image', function() {
 		this.model.set({
 			themeFlexWidth: false,
 			themeFlexHeight: false,
 			imageWidth: 2000,
-			imageHeight: 400
+			imageHeight: 200
 		});
 
 		equal(this.model.shouldBeCropped(), true);
@@ -112,7 +112,7 @@
 			themeFlexWidth: false,
 			themeFlexHeight: false,
 			imageWidth: 1000,
-			imageHeight: 100
+			imageHeight: 10000
 		});
 
 		equal(this.model.shouldBeCropped(), false);
