Skip to content

Commit

Permalink
Issue number:
Browse files Browse the repository at this point in the history
Obtained from:
Submitted by:
Reviewed by: mranga
fix test case

CVS: ----------------------------------------------------------------------
CVS: Issue number:
CVS:   If this change addresses one or more issues,
CVS:   then enter the issue number(s) here.
CVS: Obtained from:
CVS:   If this change has been taken from another system,
CVS:   then name the system in this line, otherwise delete it.
CVS: Submitted by:
CVS:   If this code has been contributed to the project by someone else; i.e.,
CVS:   they sent us a patch or a set of diffs, then include their name/email
CVS:   address here. If this is your work then delete this line.
CVS: Reviewed by:
CVS:   If we are doing pre-commit code reviews and someone else has
CVS:   reviewed your changes, include their name(s) here.
CVS:   If you have not had it reviewed then delete this line.
  • Loading branch information
ranganathanm committed Aug 16, 2006
1 parent 2d5a669 commit 3504a0a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/tck/msgflow/callflows/forkedinvite/Shootist.java
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ public synchronized void processResponse(ResponseEvent responseReceivedEvent) {
}
// Proxy will fork. I will accept the second dialog
// but not the first.

if ( forkedDialogs.size() == 1 ) {
this.forkedDialogs.add(dialog);
if ( forkedDialogs.size() == 2 ) {
logger.info("Sending ACK");
dialog.sendAck(ackRequest);
TestHarness.assertTrue(
Expand All @@ -166,7 +166,7 @@ public synchronized void processResponse(ResponseEvent responseReceivedEvent) {
"Dialog state should be terminated", dialog
.getState(), DialogState.TERMINATED);
}
this.forkedDialogs.add(dialog);


} else {
logger.info("Response method = " + cseq.getMethod());
Expand Down

0 comments on commit 3504a0a

Please sign in to comment.