Skip to content

Commit

Permalink
Added an additional check to make sure cloned instance is not same in…
Browse files Browse the repository at this point in the history
…stance as original.
  • Loading branch information
mikechambers committed Sep 21, 2009
1 parent afa6f76 commit 5058b89
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -49,6 +49,7 @@ package com.adobe.air.filesystem.events

var e2:FileMonitorEvent = FileMonitorEvent(e1.clone());

assertTrue("e1 != e2", e1 != e2);
assertTrue("e1.cancelable == e2.cancelable", e1.cancelable == e2.cancelable);
assertTrue("e1.bubbles == e2.bubbles", e1.bubbles == e2.bubbles);
assertTrue("e1.type == e2.type", e1.type == e2.type);
Expand Down

0 comments on commit 5058b89

Please sign in to comment.