Remove org.opendaylight.restconf.nb.rfc8040.utils.parser.builder
[netconf.git] / restconf / restconf-nb-rfc8040 / src / test / java / org / opendaylight / restconf / nb / rfc8040 / utils / parser / YangInstanceIdentifierSerializerTest.java
index cef46ac5b623c04cf07f6ecb3e8f43e75b23b2b4..3f73f3d67b9c25c2e174358c78e182ccdd45f3aa 100644 (file)
@@ -20,7 +20,6 @@ import org.junit.BeforeClass;
 import org.junit.Test;
 import org.opendaylight.restconf.common.errors.RestconfDocumentedException;
 import org.opendaylight.restconf.nb.rfc8040.TestRestconfUtils;
-import org.opendaylight.restconf.nb.rfc8040.utils.parser.builder.ParserBuilderConstants;
 import org.opendaylight.yangtools.yang.common.QName;
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.AugmentationIdentifier;
@@ -243,12 +242,12 @@ public class YangInstanceIdentifierSerializerTest {
 
         for (final char c : genDelims) {
             assertTrue("Current character is reserved and should be percent encoded",
-                    ParserBuilderConstants.Serializer.PERCENT_ENCODE_CHARS.matches(c));
+                    YangInstanceIdentifierSerializer.PERCENT_ENCODE_CHARS.matches(c));
         }
 
         for (final char c : subDelims) {
             assertTrue("Current character is reserved and should be percent encoded",
-                    ParserBuilderConstants.Serializer.PERCENT_ENCODE_CHARS.matches(c));
+                    YangInstanceIdentifierSerializer.PERCENT_ENCODE_CHARS.matches(c));
         }
     }