only:helping Android

This commit is contained in:
Andrey 2023-06-17 20:48:15 -04:00
parent 9f08afdcdb
commit c925eedf65
3 changed files with 2 additions and 4 deletions

View File

@ -26,8 +26,6 @@ dependencies {
implementation global_libs.json
implementation ts_plugin_libs.httpclient
testImplementation project(':config_definition')
// junit 4.13 does not mix well with httpclient :(
testImplementation group: 'junit', name: 'junit', version: '4.8.2'
testFixturesImplementation global_libs.mockito

View File

@ -28,9 +28,9 @@ public class LoadOlderTuneTest {
Page dataPage = customOldTune.findPage();
assertFalse(dataPage.constant.isEmpty());
Msq lessOldDefaultTune = Msq.readTune(SRC_TEST_RESOURCES + "simulator_tune-2023-06.xml");
Msq lessOldDefaultTune = Msq.readTune(TuneReadWriteTest.SRC_TEST_RESOURCES + "simulator_tune-2023-06.xml");
IniFileModel ini = new IniFileModel().readIniFile(TEST_INI);
IniFileModel ini = new IniFileModel().readIniFile(TuneReadWriteTest.TEST_INI);
assertFalse(ini.fieldsInUiOrder.isEmpty());
List<String> options = Files.readAllLines(Paths.get("../../" + ConfigDefinition.CONFIG_PATH));