Converted these images to PNG, saving a handful of bytes per image
[adiumx.git] / ASUnitTests / CantSetChatsAccount.applescript
blobfde4fb1043df1420fe13d78ae81e8afa81741f6e
1 global HandyAdiumScripts
2 on run
3 tell application "Adium"
4 set newChat to HandyAdiumScripts's makeNewChat()
5 try
6 set account of newChat to account 1
7 error
8 on error number num
9 if num = -2700 then error
10 end try
11 close newChat
12 end tell
13 end run