[CB-2200] Remove test dependency on deprecated device.name
(cherry picked from commit d9bf705c711e9ba47853574ec08ef77c6d988025)
diff --git a/autotest/tests/device.tests.js b/autotest/tests/device.tests.js
index 4750cc0..df9d2c6 100644
--- a/autotest/tests/device.tests.js
+++ b/autotest/tests/device.tests.js
@@ -34,11 +34,6 @@
 		expect((new String(window.device.version)).length > 0).toBe(true);
 	});
 
-	it("should contain a name specification that is a string", function() {
-        expect(window.device.name).toBeDefined();
-		expect((new String(window.device.name)).length > 0).toBe(true);
-	});
-
 	it("should contain a UUID specification that is a string or a number", function() {
         expect(window.device.uuid).toBeDefined();
 		if (typeof window.device.uuid == 'string' || typeof window.device.uuid == 'object') {