Skip to content

Commit

Permalink
Outputting to console in a unit test is weird.
Browse files Browse the repository at this point in the history
  • Loading branch information
rianjs committed Apr 10, 2021
1 parent 4dc12a0 commit f7d9082
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions net-core/Ical.Net.CoreUnitTests/SerializationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,6 @@ public void TimeZoneSerialize()
var serializer = new CalendarSerializer();
var serializedCalendar = serializer.SerializeToString(cal);

Console.Write(serializedCalendar);

var vTimezone = InspectSerializedSection(serializedCalendar, "VTIMEZONE", new[] { "TZID:" + tz.TzId });
var o = tzi.BaseUtcOffset.ToString("hhmm", CultureInfo.InvariantCulture);

Expand Down Expand Up @@ -261,7 +259,6 @@ public void EventPropertiesSerialized()
var serializer = new CalendarSerializer();
var serializedCalendar = serializer.SerializeToString(cal);

Console.Write(serializedCalendar);
Assert.IsTrue(serializedCalendar.StartsWith("BEGIN:VCALENDAR"));
Assert.IsTrue(serializedCalendar.EndsWith("END:VCALENDAR" + SerializationConstants.LineBreak));

Expand Down Expand Up @@ -324,8 +321,6 @@ public void AttendeesSerialized()
var serializer = new CalendarSerializer();
var serializedCalendar = serializer.SerializeToString(cal);

Console.Write(serializedCalendar);

var vEvt = InspectSerializedSection(serializedCalendar, "VEVENT", new[] { "ORGANIZER:" + org });

foreach (var a in evt.Attendees)
Expand Down

0 comments on commit f7d9082

Please sign in to comment.