From c073e35b1ed738461eba5cc539923d8fa539b03a Mon Sep 17 00:00:00 2001
From: Philipp Hagemeister <phihag@phihag.de>
Date: Tue, 1 Jan 2013 19:34:54 +0100
Subject: [PATCH] Simplify test parameter initialization

---
 test/test_download.py | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/test/test_download.py b/test/test_download.py
index 128ff9ae4..8b9b83373 100644
--- a/test/test_download.py
+++ b/test/test_download.py
@@ -74,9 +74,8 @@ def generator(test_case):
             print('Skipping: {0}'.format(test_case['skip']))
             return
 
-        params = dict(self.parameters) # Duplicate it locally
-        for p in test_case.get('params', {}):
-            params[p] = test_case['params'][p]
+        params = self.parameters.copy()
+        params.update(test_case.get('params', {}))
 
         fd = FileDownloader(params)
         fd.add_info_extractor(ie())