From 033096f150e2c55268e631d77785e2c1d5772e8a Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Mon, 13 Mar 2023 14:54:29 +0000
Subject: [PATCH 1/2] chore(deps): update dependency
testableio.system.io.abstractions to v19.2.4
---
Examples/Directory.Build.props | 2 +-
.../Testably.Abstractions.Interface.csproj | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Examples/Directory.Build.props b/Examples/Directory.Build.props
index a0a965eec..0e4816f01 100644
--- a/Examples/Directory.Build.props
+++ b/Examples/Directory.Build.props
@@ -36,7 +36,7 @@
-
+
diff --git a/Source/Testably.Abstractions.Interface/Testably.Abstractions.Interface.csproj b/Source/Testably.Abstractions.Interface/Testably.Abstractions.Interface.csproj
index abeec977a..214b7e48a 100644
--- a/Source/Testably.Abstractions.Interface/Testably.Abstractions.Interface.csproj
+++ b/Source/Testably.Abstractions.Interface/Testably.Abstractions.Interface.csproj
@@ -18,7 +18,7 @@
-
+
From 97e3865ef73ce66d45ee426e840225c99f65fcf4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Valentin=20Breu=C3=9F?=
Date: Tue, 14 Mar 2023 19:53:05 +0100
Subject: [PATCH 2/2] Fix build error
---
.../Testably.Abstractions.Testing/FileSystem/FileStreamMock.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Source/Testably.Abstractions.Testing/FileSystem/FileStreamMock.cs b/Source/Testably.Abstractions.Testing/FileSystem/FileStreamMock.cs
index aaadcef2a..a21f2095b 100644
--- a/Source/Testably.Abstractions.Testing/FileSystem/FileStreamMock.cs
+++ b/Source/Testably.Abstractions.Testing/FileSystem/FileStreamMock.cs
@@ -61,7 +61,7 @@ private FileStreamMock(MemoryStream stream,
FileOptions options)
: base(
stream,
- path == null ? null : fileSystem.Path.GetFullPath(path),
+ path == null ? "" : fileSystem.Path.GetFullPath(path),
(options & FileOptions.Asynchronous) != 0)
{
ThrowIfInvalidModeAccess(mode, access);