[0.6.164] Apply tizen coding rule
[platform/core/multimedia/libmm-player.git] / unittest / unittest.cpp
index 28b7aa2..e47eb5b 100644 (file)
@@ -107,7 +107,7 @@ void MMPlayerPrivTest::TearDown()
 TEST_F(MMPlayerPrivTest, Realize_P)
 {
        int ret = MM_ERROR_NONE;
-       const gcharuri = "http://test-url.mp4";
+       const gchar *uri = "http://test-url.mp4";
 
        ret = priv_player.SetUri(uri);
        EXPECT_EQ(ret, MM_ERROR_NONE);
@@ -126,7 +126,7 @@ TEST_F(MMPlayerPrivTest, Realize_N)
 TEST_F(MMPlayerPrivTest, ParseProfile_p)
 {
        int ret = MM_ERROR_NONE;
-       const gcharuri = "http://test-url";
+       const gchar *uri = "http://test-url";
        int uri_type = MM_PLAYER_URI_TYPE_NONE;
 
        ret = priv_player.ParseProfile(uri, &uri_type);
@@ -138,7 +138,7 @@ TEST_F(MMPlayerPrivTest, ParseProfile_p)
 TEST_F(MMPlayerPrivTest, ParseProfile_n)
 {
        int ret = MM_ERROR_NONE;
-       const gcharuri = "file://non-existing-file.mp4";
+       const gchar *uri = "file://non-existing-file.mp4";
 
        ret = priv_player.ParseProfile(uri, NULL);