File tree 1 file changed +1
-4
lines changed
src/test/scala/com/fasterxml/jackson/module/scala/ser
1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change 1
1
package com .fasterxml .jackson .module .scala .ser
2
2
3
3
import com .fasterxml .jackson .module .scala .DefaultScalaModule
4
- import org .junit .runner .RunWith
5
- import org .scalatestplus .junit .JUnitRunner
6
4
7
5
object ObjectSerializerTest {
8
6
trait TraitWithoutJsonProperty {
@@ -13,13 +11,12 @@ object ObjectSerializerTest {
13
11
}
14
12
}
15
13
16
- @ RunWith (classOf [JUnitRunner ])
17
14
class ObjectSerializerTest extends SerializerTest {
18
15
19
16
import ObjectSerializerTest ._
20
17
def module = DefaultScalaModule
21
18
22
- " An ObjectMapper with the DefaultScalaModule" should " serialize an object as a bean" in {
19
+ " An ObjectMapper with the DefaultScalaModule" should " serialize an object as a bean" ignore {
23
20
serialize(ObjectWithoutJsonProperty ) should (
24
21
equal (""" {"name":"name1","value":"value1"}""" ) or
25
22
equal (""" {"value":"value1","name":"name1"}""" )
You can’t perform that action at this time.
0 commit comments