Skip to content

Commit f8d744d

Browse files
ThreaTThreaT
ThreaT
authored and
ThreaT
committed
Added acceptance tests prototype. Requires code review and bug fixing.
1 parent 5c19bd5 commit f8d744d

File tree

2 files changed

+29
-32
lines changed

2 files changed

+29
-32
lines changed

pom.xml

+28-31
Original file line numberDiff line numberDiff line change
@@ -111,35 +111,32 @@
111111
</license>
112112
</licenses>
113113
<profiles>
114-
<profile>
115-
<id>release-sign-artifacts</id>
116-
<activation>
117-
<property>
118-
<name>performRelease</name>
119-
<value>true</value>
120-
</property>
121-
</activation>
122-
<build>
123-
<plugins>
124-
<plugin>
125-
<groupId>org.apache.maven.plugins</groupId>
126-
<artifactId>maven-gpg-plugin</artifactId>
127-
<version>1.1</version>
128-
<executions>
129-
<execution>
130-
<id>sign-artifacts</id>
131-
<phase>verify</phase>
132-
<goals>
133-
<goal>sign</goal>
134-
</goals>
135-
</execution>
136-
</executions>
137-
<configuration>
138-
<keyname>[email protected]</keyname>
139-
</configuration>
140-
</plugin>
141-
</plugins>
142-
</build>
143-
</profile>
114+
<profile>
115+
<id>release-sign-artifacts</id>
116+
<activation>
117+
<property><name>performRelease</name><value>true</value></property>
118+
</activation>
119+
<build>
120+
<plugins>
121+
<plugin>
122+
<groupId>org.apache.maven.plugins</groupId>
123+
<artifactId>maven-gpg-plugin</artifactId>
124+
<version>1.1</version>
125+
<executions>
126+
<execution>
127+
<id>sign-artifacts</id>
128+
<phase>verify</phase>
129+
<goals>
130+
<goal>sign</goal>
131+
</goals>
132+
</execution>
133+
</executions>
134+
<configuration>
135+
<keyname>[email protected]</keyname>
136+
</configuration>
137+
</plugin>
138+
</plugins>
139+
</build>
140+
</profile>
144141
</profiles>
145-
</project>
142+
</project>

src/test/resources/org/java_websocket/AutobahnClient.feature

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Feature: Client connects using Draft 17
2222

2323
Examples:
2424
|protocol|host |port|query |method |http_version|handshake |websocket_key |websocket_version |upgraded_protocol |
25-
|ws:// |localhost:|9001|case=1&agent=tootallnate/websocket|GET |HTTP/1.1 |Connection: Upgrade|Sec-WebSocket-Key:|Sec-WebSocket-Version:|Upgrade: websocket|
25+
|ws:// |localhost:|9003|case=1&agent=tootallnate/websocket|GET |HTTP/1.1 |Connection: Upgrade|Sec-WebSocket-Key:|Sec-WebSocket-Version:|Upgrade: websocket|
2626

2727

2828

0 commit comments

Comments
 (0)