ConfigSuite: fix example for setting config in test

Change-Id: I44df95d4822da08fd6395c5a098d2fd4300f0426
This commit is contained in:
Luca Milanesio
2020-04-08 10:58:28 +01:00
parent 1e54358b16
commit 7a0cebd634

View File

@@ -58,6 +58,7 @@ import org.junit.runners.model.InitializationError;
* public static Config firstConfig() {
* Config cfg = new Config();
* cfg.setString("gerrit", null, "testValue", "a");
* return cfg;
* }
* }
*
@@ -66,6 +67,7 @@ import org.junit.runners.model.InitializationError;
* public static Config secondConfig() {
* Config cfg = new Config();
* cfg.setString("gerrit", null, "testValue", "b");
* return cfg;
* }
*
* {@literal @}Test