[hardware_test] Get rid of the USB step

This commit is contained in:
Romain Goyet
2018-05-04 16:05:15 +02:00
committed by Ecco
parent aa776be032
commit 5d9f66df28
5 changed files with 1 additions and 148 deletions

View File

@@ -28,13 +28,12 @@ App::WizardViewController::WizardViewController(Responder * parentResponder) :
m_screenTestController(this),
m_ledTestController(this),
m_batteryTestController(this),
m_USBTestController(this),
m_serialNumberController(this)
{
}
int App::WizardViewController::numberOfChildren() {
return 6;
return 5;
}
ViewController * App::WizardViewController::childAtIndex(int i) {
@@ -43,7 +42,6 @@ ViewController * App::WizardViewController::childAtIndex(int i) {
&m_screenTestController,
&m_ledTestController,
&m_batteryTestController,
&m_USBTestController,
&m_serialNumberController
};
return children[i];