Merge "Fix URI equivalence check"
diff --git a/acts/framework/acts/test_utils/bt/bt_test_utils.py b/acts/framework/acts/test_utils/bt/bt_test_utils.py
index 792af12..0c06f6d 100644
--- a/acts/framework/acts/test_utils/bt/bt_test_utils.py
+++ b/acts/framework/acts/test_utils/bt/bt_test_utils.py
@@ -676,7 +676,7 @@
         device_model = droid.getBuildModel()
         device_model = device_model.replace(" ", "")
         out_name = ','.join((test_name, device_model, serial))
-        cmd = ''.join(("adb -s ", serial, " pull /sdcard/btsnoop_hci.log > ",
+        cmd = ''.join(("adb -s ", serial, " pull /sdcard/btsnoop_hci.log ",
                        testcase.log_path + "/" + out_name,
                        ".btsnoop_hci.log"))
         testcase.log.info("Test failed, grabbing the bt_snoop logs on {} {}."