about summary refs log tree commit diff stats
path: root/functionaltests
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-06-07 02:07:09 +0100
committerJames Booth <boothj5@gmail.com>2015-06-07 02:07:09 +0100
commit046da191c8093b0ead82dc188bcaf7dbd263bfcb (patch)
treee09d22772fa7ffe538d420ea0ef8b3f7e7f1d18e /functionaltests
parent0e5dc6d89b1121c8a00ebba142d0b5f02de5e097 (diff)
downloadprofani-tty-046da191c8093b0ead82dc188bcaf7dbd263bfcb.tar.gz
Moved stbbr_stop call in functional tests
Diffstat (limited to 'functionaltests')
-rw-r--r--functionaltests/proftest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/functionaltests/proftest.c b/functionaltests/proftest.c
index b4f0017f..c480363c 100644
--- a/functionaltests/proftest.c
+++ b/functionaltests/proftest.c
@@ -162,12 +162,12 @@ close_prof_test(void **state)
 {
     prof_input("/quit");
     waitpid(exp_pid, NULL, 0);
-    stbbr_stop();
     _cleanup_dirs();
 
     setenv("XDG_CONFIG_HOME", config_orig, 1);
     setenv("XDG_DATA_HOME", data_orig, 1);
 
+    stbbr_stop();
 }
 
 void
'#n132'>132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207