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