File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
system-int-test/test/cmr/system_int_test/admin Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 28
28
status (:status response)]
29
29
30
30
; ; Make sure the status returned is success
31
- (when (< status 200 )
31
+ (when (not= status 200 )
32
32
(throw (Exception. (str " Unexpected status " status " response:" (:body response)))))
33
33
(json/decode (:body response) true )))
34
34
43
43
:throw-exceptions false })
44
44
status (:status response)]
45
45
; ; Make sure the status returned is success
46
- (when (< status 200 )
46
+ (when (not= status 200 )
47
47
(throw (Exception. (str " Unexpected status " status " response:" (:body response)))))
48
48
(json/decode (:body response) true )))
49
49
58
58
:throw-exceptions false })
59
59
status (:status response)]
60
60
; ; Make sure the status returned success
61
- (when (< status 200 )
61
+ (when (not= status 200 )
62
62
(throw (Exception. (str " Unexpected status " status " response:" (:body response)))))
63
63
(json/decode (:body response) true )))
64
64
You can’t perform that action at this time.
0 commit comments