mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-01 16:59:35 +01:00
* refactored Cell * Fixed usings * Wierd CI/Cd unit test failure. Will this fix?
This commit is contained in:
@@ -240,7 +240,7 @@ namespace Terminal.Gui.ViewsTests {
|
||||
{
|
||||
var item = "";
|
||||
for (int i = 0; i < 7; i++) {
|
||||
item += Application.Driver.Contents [line, i].Runes[0];
|
||||
item += Application.Driver.Contents [line, i].Rune;
|
||||
}
|
||||
return item;
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1137,7 +1137,7 @@ namespace Terminal.Gui.ViewsTests {
|
||||
{
|
||||
var item = "";
|
||||
for (int i = 0; i < 16; i++) {
|
||||
item += Application.Driver.Contents [0, i].Runes [0];
|
||||
item += Application.Driver.Contents [0, i].Rune;
|
||||
}
|
||||
return item;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user