Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion yaml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>2.3</version>
<version>2.4</version>
</dependency>

<!-- and for testing need annotations; but should be available via `jackson-databind` above
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.fasterxml.jackson.dataformat.yaml.tofix;
package com.fasterxml.jackson.dataformat.yaml.deser;

import java.nio.charset.StandardCharsets;

Expand All @@ -8,7 +8,6 @@
import com.fasterxml.jackson.core.JsonToken;
import com.fasterxml.jackson.dataformat.yaml.ModuleTestBase;
import com.fasterxml.jackson.dataformat.yaml.YAMLMapper;
import com.fasterxml.jackson.dataformat.yaml.testutil.failure.JacksonTestFailureExpected;

import static org.junit.jupiter.api.Assertions.assertEquals;

Expand All @@ -18,7 +17,6 @@ public class UnicodeYAMLRead497Test extends ModuleTestBase
private final YAMLMapper MAPPER = newObjectMapper();

// [dataformats-text#497]
@JacksonTestFailureExpected
@Test
public void testUnicodeAtEnd() throws Exception
{
Expand Down