[master] updating remaining WebGUI references to new repo

Signed-off-by: Tamas Levente Kiss <tamas.levente.kiss@ericsson.com>
diff --git a/demo/Deploy/deployBattleship.py b/demo/Deploy/deployBattleship.py
index 689fd1a..b545d71 100644
--- a/demo/Deploy/deployBattleship.py
+++ b/demo/Deploy/deployBattleship.py
@@ -18,8 +18,8 @@
 os.system('cp -ar ../../src/Common ' + destination)
 os.system('cp -ar ../../src/Microservices/Authentication ' + microservicesDir)
 os.system('cp -ar ../../src/Microservices/DataSource ' + microservicesDir)
-os.system('cp -ar ../../src/WebGUI/src/WebGUI ' + destination)
-os.system('cp -ar ../../src/WebGUI/src/DsRestAPI/Api/Js ' + destination + '/WebGUI/htdocs/Utils/DsRestAPI')
+os.system('cp -ar ../../lib/WebGUI/ ' + destination)
+#os.system('cp -ar ../../src/WebGUI/src/DsRestAPI/Api/Js ' + destination + '/WebGUI/htdocs/Utils/DsRestAPI')
 os.system('cp -ar ../Microservices/BattleShip ' + microservicesDir)
 os.system('cp -ar ../Microservices/GuiConfigHandlerForBattleship ' + microservicesDir)
 os.system('cp -ar ../Microservices/__init__.py ' + microservicesDir)
diff --git a/test/testcases/test_integration.py b/test/testcases/test_integration.py
index 6a8477a..34e08bb 100644
--- a/test/testcases/test_integration.py
+++ b/test/testcases/test_integration.py
@@ -51,7 +51,7 @@
             except:
                 self.port += 1
         # start the server on a separate thread
-        self.serverThread = threading.Thread(target = runAppAgent, args = (self.server, directory, 'WebGUI/src/WebGUI/htdocs', False))
+        self.serverThread = threading.Thread(target = runAppAgent, args = (self.server, directory, 'WebGUI/htdocs', False))
         self.serverThread.daemon = True
         self.serverThread.start()
         # check if the server is running after 0.5 seconds