Index: /Include/Classes/System/Diagnostics/base.ab
===================================================================
--- /Include/Classes/System/Diagnostics/base.ab	(revision 86)
+++ /Include/Classes/System/Diagnostics/base.ab	(revision 87)
@@ -25,5 +25,5 @@
 	' アサート（コールスタックを表示）
 	Sub Assert( condition As Boolean )
-		If condition == False then
+		If condition = False then
 			'TODO: コールスタックを表示
 		End If
@@ -32,5 +32,5 @@
 	' アサート（メッセージ文字列を表示）
 	Sub Assert( condition As Boolean, message As String )
-		If condition == False then
+		If condition = False then
 			' TODO: メッセージボックス形式での表示に対応
 			WriteLine( message )
