Change test condition

This commit is contained in:
Tatsunori Uchino
2026-03-01 12:23:44 +09:00
parent 344891d84b
commit 8b731a208a
2 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ using System;
using System.Buffers;
using System.Collections.Generic;
using System.Linq;
#if NET && !MARKDIG_NO_RUNE_TESTS
#if !NET || !MARKDIG_NO_RUNE_TESTS
using System.Text;
#endif
using System.Threading.Tasks;
@@ -106,7 +106,7 @@ namespace Markdig.Tests
Assert.AreEqual(expected, actual);
}
#if NET && !MARKDIG_NO_RUNE_TESTS
#if !NET || !MARKDIG_NO_RUNE_TESTS
// delimiter: '*', '_' = each character, '?' = either
// can open/close = whether the places can be in the range of emphasis
// 2 before, previous, can close, delimiter, can open, next

View File

@@ -9,7 +9,7 @@ namespace Markdig.Tests;
[TestFixture]
public class TestStringSlice
{
#if NET && !MARKDIG_NO_RUNE_TESTS
#if !NET || !MARKDIG_NO_RUNE_TESTS
[Test]
public void TestRuneBmp()
{