PluginDaemonTest: Expose plugin name

Plugin tests have to know plugin name. Change the modifier for the
existing pluginName variable from private to protected.

Change-Id: I9876cb1c800d60eecb7166655d5d34a0784f2a64
This commit is contained in:
David Ostrovsky
2016-08-21 21:39:54 +02:00
parent 3d191a2c9a
commit 7a54f8be78

View File

@@ -48,9 +48,9 @@ public abstract class PluginDaemonTest extends AbstractDaemonTest {
private Path pluginsSitePath;
private Path pluginSubPath;
private Path pluginSource;
private String pluginName;
private boolean standalone;
protected String pluginName;
protected Path testSite;
@Override