Merge pull request #902 from 13xforever/vnext

Try to fix shit
This commit is contained in:
clienthax 2022-08-16 23:37:03 +01:00 committed by GitHub
commit 10d3f1ec88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -2,7 +2,7 @@ FROM mcr.microsoft.com/dotnet/sdk:6.0-jammy AS base
# Native libgdiplus dependencies
RUN apt-get update
RUN apt-get install -y --allow-unauthenticated libc6-dev libgdiplus libx11-dev fonts-roboto tzdata
RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get install -y --allow-unauthenticated libc6-dev libgdiplus libx11-dev fonts-roboto tzdata
# debian-specific?
#RUN rm -rf /var/lib/apt/lists/*

View File

@ -17,4 +17,10 @@ public class TimeParserTests
Assert.That(result, Is.EqualTo(utc));
Assert.That(result.Kind, Is.EqualTo(DateTimeKind.Utc));
}
[Test]
public void TimeZoneInfoTest()
{
Assert.That(TimeParser.TimeZoneMap.Count, Is.GreaterThan(0));
}
}