Skip to content

Commit 075a519

Browse files
committed
Merge branch 'develop' into de-542-speechToTextCustomization
2 parents 0153cb7 + 6bed045 commit 075a519

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Scripts/UnitTests/UnitTestManager.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ public class UnitTestManager : MonoBehaviour
6363
/// </summary>
6464
public OnTestsComplete OnTestCompleteCallback { get; set; }
6565

66+
[SerializeField]
67+
private string m_ProjectNameToTest = "";
6668
public static string ProjectToTest = null;
6769

6870
/// <summary>
@@ -207,7 +209,7 @@ private void OnGUI()
207209
string sButtonLabel = "Run " + t.Name;
208210
if (GUILayout.Button(sButtonLabel,GUILayout.MinWidth(Screen.width * 0.4f), GUILayout.MinHeight(Screen.height * 0.04f)))
209211
{
210-
IBM.Watson.DeveloperCloud.Editor.UnitTestManager.ProjectToTest = Config.Instance.GetVariableValue("PACKAGE_PREFIX");
212+
IBM.Watson.DeveloperCloud.Editor.UnitTestManager.ProjectToTest = m_ProjectNameToTest;
211213
QueueTest(t, true);
212214
}
213215
}

0 commit comments

Comments
 (0)