From 40c46c65811c9ac4257889b68b6d46bd5952537c Mon Sep 17 00:00:00 2001 From: "nguyen.vtan" Date: Mon, 25 Jun 2018 13:22:31 +0700 Subject: [PATCH] [DPTTIZEN-3078][MediaPlayer] Modify precondition ADAPTIVE_STREAMING_URL Change-Id: I1d6b08ed496e7c618d346dc52dac7275cac4d00a --- .../Tizen.MediaPlayer.Tests/testcase/support/PreconditionUtil.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tct-suite-vs/Tizen.MediaPlayer.Tests/testcase/support/PreconditionUtil.cs b/tct-suite-vs/Tizen.MediaPlayer.Tests/testcase/support/PreconditionUtil.cs index e839c88..235fe52 100644 --- a/tct-suite-vs/Tizen.MediaPlayer.Tests/testcase/support/PreconditionUtil.cs +++ b/tct-suite-vs/Tizen.MediaPlayer.Tests/testcase/support/PreconditionUtil.cs @@ -40,8 +40,8 @@ namespace Tizen.Multimedia.Tests STREAMING_URI = resultArray[index + 1]; break; case "ADAPTIVE_STREAMING_URL": - resultArray[index + 2] = resultArray[index + 2].Replace("\\", ""); - ADAPTIVE_STREAMING_URL = resultArray[index + 2]; + resultArray[index + 1] = resultArray[index + 1].Replace("\\", ""); + ADAPTIVE_STREAMING_URL = resultArray[index + 1]; break; default: break; -- 2.7.4