fixed typo

This commit is contained in:
Zachary Folwick 2015-09-03 16:42:28 -07:00
parent d4f08a971d
commit bd6e4ef885

View file

@ -101,7 +101,8 @@ namespace PSTests
File.Create(path);
}
// Create a file to write to using StreamWriter.
// convert string to stream. On Windows, this appears to be handled, but on *nix, we apparently need to convert to UTF8.
// convert string to stream. On Windows, this appears to be handled, but on *nix,
// we apparently need to convert to UTF8.
byte[] byteArray = System.Text.Encoding.UTF8.GetBytes(path);
MemoryStream stream = new MemoryStream(byteArray);