Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Fix Win integ tests for remote test events #6011

Merged
merged 1 commit into from
Oct 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import uuid
import json
import os
import uuid

import pytest
from pathlib import Path
Expand Down Expand Up @@ -60,7 +61,7 @@ def test_event_workflow(self):
self.get_event_and_check(self.stack_name, function_to_check, "event2", json.dumps(event_contents2))

# Check two events
self.list_events_and_check(self.stack_name, function_to_check, "event1\nevent2")
self.list_events_and_check(self.stack_name, function_to_check, os.linesep.join(["event1", "event2"]))

# Invoke with two events (function returns the same event that it receives)
self.remote_invoke_and_check(self.stack_name, function_to_check, "event1", event_contents1)
Expand Down