diff --git a/tests/test_stream.liq b/tests/test_stream.liq
index c6c8974c30b3efcacbef917d60323bd6a7590fbf..28444cb64afa385e843dc948a46790dcb3f5939c 100755
--- a/tests/test_stream.liq
+++ b/tests/test_stream.liq
@@ -17,11 +17,16 @@
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-http_starturl = "https://securestream.o94.at/live.mp3"
-# http_starturl = "http://stream01.kapper.net:8001/live.mp3"
-# http_starturl = "https://live.helsinki.at:8088/live160.ogg"
-# http_starturl = "https://stream.fro.at/fro-128.ogg"
-# http_starturl = "http://212.89.182.114:8008/frf"
 
-input_http = input.http(id="in_http", max_buffer=5., timeout=10.0, start=true, http_starturl)
+%include "base_config.liq"
+
+
+url = "https://orf-live.ors-shoutcast.at/oe1-q2a"
+# url = "https://securestream.o94.at/live.mp3"
+# url = "http://stream01.kapper.net:8001/live.mp3"
+# url = "https://live.helsinki.at:8088/live160.ogg"
+# url = "https://stream.fro.at/fro-128.ogg"
+# url = "http://212.89.182.114:8008/frf"
+
+input_http = input.http(id="in_http", max_buffer=5., timeout=10.0, start=true, url)
 output.alsa(device="default", mksafe(input_http), bufferize=true)
\ No newline at end of file