Re-add hello.xml file (#147)

* Re-add hello.xml file

Apparently it was lost during the great refactoring.

* Remove hello.xml from test resources
This commit is contained in:
Lai Jiang 2019-07-02 17:21:40 -04:00 committed by GitHub
parent b2199387f6
commit 3181ff0d1a
2 changed files with 1 additions and 1 deletions

View file

@ -134,7 +134,7 @@ public class EppProtocolModule {
@Named("hello")
static byte[] provideHelloBytes() {
try {
return readResourceBytes(EppProtocolModule.class, "resources/hello.xml").read();
return readResourceBytes(EppProtocolModule.class, "hello.xml").read();
} catch (IOException e) {
throw new RuntimeException("Cannot read EPP <hello> message file.", e);
}