commit | 701ca48a2b670fb090dea2377edb0d22895b6e6c | [log] [tgz] |
---|---|---|
author | Sean Condon <sean.condon@microsemi.com> | Sun Aug 27 19:10:28 2017 +0100 |
committer | Sean Condon <sean.condon@microsemi.com> | Thu Aug 31 09:33:14 2017 +0100 |
tree | a100001292efc0e505baf5aec89924585ecfd192 | |
parent | e0d8b0847ff4c5e806469bb20a163c918608be1e [diff] [blame] |
Binary yang type handling. Conv byte[] to Base 64 Change-Id: Iba628f4c8841e6e7842e5812b51881448c39a655
diff --git a/runtime/src/test/resources/schemaProviderTestYangFiles/rpc_test.yang b/runtime/src/test/resources/schemaProviderTestYangFiles/rpc_test.yang index fdd4a43..1825b2d 100644 --- a/runtime/src/test/resources/schemaProviderTestYangFiles/rpc_test.yang +++ b/runtime/src/test/resources/schemaProviderTestYangFiles/rpc_test.yang
@@ -24,13 +24,13 @@ rpc hello-second { input { leaf x { - type string; + type binary; } } output { leaf greeting { - type string; + type binary; } } }