This repository was archived by the owner on Mar 21, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
java/org/graylog/plugins/netflow Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -318,9 +318,9 @@ public void pcap_pmacctd_NetFlowV9() throws Exception {
318318 }
319319
320320 @ Test
321- public void pcap_nprobe_NetFlowV5 () throws Exception {
321+ public void pcap_netgraph_NetFlowV5 () throws Exception {
322322 final List <Message > allMessages = new ArrayList <>();
323- try (InputStream inputStream = Resources .getResource ("netflow-data/nprobe -netflow5.pcap" ).openStream ()) {
323+ try (InputStream inputStream = Resources .getResource ("netflow-data/netgraph -netflow5.pcap" ).openStream ()) {
324324 final Pcap pcap = Pcap .openStream (inputStream );
325325 pcap .loop (packet -> {
326326 if (packet .hasProtocol (Protocol .UDP )) {
Original file line number Diff line number Diff line change @@ -168,9 +168,9 @@ public void pcap_pmacctd_NetFlowV5() throws Exception {
168168 }
169169
170170 @ Test
171- public void pcap_nprobe_NetFlowV5 () throws Exception {
171+ public void pcap_netgraph_NetFlowV5 () throws Exception {
172172 final List <NetFlowV5Record > allRecords = new ArrayList <>();
173- try (InputStream inputStream = Resources .getResource ("netflow-data/nprobe -netflow5.pcap" ).openStream ()) {
173+ try (InputStream inputStream = Resources .getResource ("netflow-data/netgraph -netflow5.pcap" ).openStream ()) {
174174 final Pcap pcap = Pcap .openStream (inputStream );
175175 pcap .loop (packet -> {
176176 if (packet .hasProtocol (Protocol .UDP )) {
File renamed without changes.
You can’t perform that action at this time.
0 commit comments