From 0088fd08f32341d17d51fae5ca1627db85b01be6 Mon Sep 17 00:00:00 2001
From: Paul McCarthy <pauldmccarthy@gmail.com>
Date: Wed, 28 Nov 2018 19:00:34 +0000
Subject: [PATCH] TEST: Fix some other tests

---
 tests/test_wrapperutils.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/test_wrapperutils.py b/tests/test_wrapperutils.py
index d24c89fc5..601e9f8ff 100644
--- a/tests/test_wrapperutils.py
+++ b/tests/test_wrapperutils.py
@@ -654,7 +654,7 @@ def test_fslwrapper_submit():
 
         jid = test_func(1, 2, submit=True)
 
-        assert jid == ('12345',)
+        assert jid == '12345'
 
         stdout, stderr = fslsub.output('12345')
 
@@ -665,7 +665,7 @@ def test_fslwrapper_submit():
 
         jid = test_func(1, 2, submit=kwargs)
 
-        assert jid == ('12345',)
+        assert jid == '12345'
 
         stdout, stderr = fslsub.output('12345')
 
-- 
GitLab