diff options
author | Stefan Radomski <github@mintwerk.de> | 2017-07-05 11:35:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-05 11:35:04 (GMT) |
commit | cb2f533085542a753fc45d17fdb09396c46fbadc (patch) | |
tree | 66d378d1df7cb82834e944a1f37865809abf75ae /test/src/test-state-pass.cpp | |
parent | 3f10e11d6ad2b97fee4aee6e09bc959ba9b8e0e5 (diff) | |
parent | a0f96c5dd050c524223ac644ba8798bc7cc80bfd (diff) | |
download | uscxml-cb2f533085542a753fc45d17fdb09396c46fbadc.zip uscxml-cb2f533085542a753fc45d17fdb09396c46fbadc.tar.gz uscxml-cb2f533085542a753fc45d17fdb09396c46fbadc.tar.bz2 |
Merge pull request #155 from tklab-tud/sradomski
More performant monitors with slight API break
Diffstat (limited to 'test/src/test-state-pass.cpp')
-rw-r--r-- | test/src/test-state-pass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/src/test-state-pass.cpp b/test/src/test-state-pass.cpp index c07523e..324cce3 100644 --- a/test/src/test-state-pass.cpp +++ b/test/src/test-state-pass.cpp @@ -80,8 +80,8 @@ int main(int argc, char** argv) { state = interpreter.step(); } if (interpreter.isInState("pass")) - return EXIT_SUCCESS; - return EXIT_FAILURE; + return EXIT_SUCCESS; + return EXIT_FAILURE; } catch (Event e) { std::cerr << "Thrown Event out of Interpreter: " << e; |