Skip to content

Commit

Permalink
Conflicting ports in integration test (#3161)
Browse files Browse the repository at this point in the history
* create result with exception message

* increase s2nd port

Co-authored-by: Sam Clark <vclarksa@amazon.com>
  • Loading branch information
goatgoose and Sam Clark authored Jan 5, 2022
1 parent 404111c commit 5a3b1ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/integration/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# permissions and limitations under the License.
#

S2ND_PORT=8888
S2ND_PORT=18888
S2ND_HOST=127.0.0.1

# If the libcrypto that s2n was built with is not specified, assume latest(1.1.1).
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/common/s2n_test_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def __test(scenario):
result = Result("Server process crashed")

except AssertionError as error:
result = Result(error)
result = Result(str(error))
finally:
cleanup_processes(server, client)
if client:
Expand Down

0 comments on commit 5a3b1ad

Please sign in to comment.