<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -249,20 +249,20 @@ test_simple_array (void)
           array = json_node_get_array (root);
           g_assert (array != NULL);
 
-         if (g_test_verbose ())
-           g_print (&quot;checking array is of the desired length (%d)...\n&quot;,
-                    test_simple_arrays[i].len);
-         g_assert_cmpint (json_array_get_length (array), ==, test_simple_arrays[i].len);
-
-         if (g_test_verbose ())
-           g_print (&quot;checking element %d is of the desired type %s...\n&quot;,
-                    test_simple_arrays[i].element,
-                    g_type_name (test_simple_arrays[i].gtype));
-         node = json_array_get_element (array, test_simple_arrays[i].element);
-         g_assert (node != NULL);
-         g_assert_cmpint (JSON_NODE_TYPE (node), ==, test_simple_arrays[i].type);
-         g_assert_cmpint (json_node_get_value_type (node), ==, test_simple_arrays[i].gtype);
-       }
+          if (g_test_verbose ())
+            g_print (&quot;checking array is of the desired length (%d)...\n&quot;,
+                     test_simple_arrays[i].len);
+          g_assert_cmpint (json_array_get_length (array), ==, test_simple_arrays[i].len);
+
+          if (g_test_verbose ())
+            g_print (&quot;checking element %d is of the desired type %s...\n&quot;,
+                     test_simple_arrays[i].element,
+                     g_type_name (test_simple_arrays[i].gtype));
+          node = json_array_get_element (array, test_simple_arrays[i].element);
+          g_assert (node != NULL);
+          g_assert_cmpint (JSON_NODE_TYPE (node), ==, test_simple_arrays[i].type);
+          g_assert_cmpint (json_node_get_value_type (node), ==, test_simple_arrays[i].gtype);
+        }
     }
 
   g_object_unref (parser);
@@ -308,10 +308,10 @@ test_nested_array (void)
           array = json_node_get_array (root);
           g_assert (array != NULL);
 
-         if (g_test_verbose ())
-           g_print (&quot;checking array is not empty...\n&quot;);
-         g_assert_cmpint (json_array_get_length (array), &gt;, 0);
-       }
+          if (g_test_verbose ())
+            g_print (&quot;checking array is not empty...\n&quot;);
+          g_assert_cmpint (json_array_get_length (array), &gt;, 0);
+        }
     }
 
   g_object_unref (parser);
@@ -400,20 +400,20 @@ test_simple_object (void)
           object = json_node_get_object (root);
           g_assert (object != NULL);
 
-         if (g_test_verbose ())
-           g_print (&quot;checking object is of the desired size (%d)...\n&quot;,
-                    test_simple_objects[i].size);
-         g_assert_cmpint (json_object_get_size (object), ==, test_simple_objects[i].size);
-
-         if (g_test_verbose ())
-           g_print (&quot;checking member '%s' is of the desired type %s...\n&quot;,
-                    test_simple_objects[i].member,
-                    g_type_name (test_simple_objects[i].gtype));
-         node = json_object_get_member (object, test_simple_objects[i].member);
-         g_assert (node != NULL);
-         g_assert_cmpint (JSON_NODE_TYPE (node), ==, test_simple_objects[i].type);
-         g_assert_cmpint (json_node_get_value_type (node), ==, test_simple_objects[i].gtype);
-       }
+          if (g_test_verbose ())
+            g_print (&quot;checking object is of the desired size (%d)...\n&quot;,
+                     test_simple_objects[i].size);
+          g_assert_cmpint (json_object_get_size (object), ==, test_simple_objects[i].size);
+
+          if (g_test_verbose ())
+            g_print (&quot;checking member '%s' is of the desired type %s...\n&quot;,
+                     test_simple_objects[i].member,
+                     g_type_name (test_simple_objects[i].gtype));
+          node = json_object_get_member (object, test_simple_objects[i].member);
+          g_assert (node != NULL);
+          g_assert_cmpint (JSON_NODE_TYPE (node), ==, test_simple_objects[i].type);
+          g_assert_cmpint (json_node_get_value_type (node), ==, test_simple_objects[i].gtype);
+        }
     }
 
   g_object_unref (parser);
@@ -459,10 +459,10 @@ test_nested_object (void)
           object = json_node_get_object (root);
           g_assert (object != NULL);
 
-         if (g_test_verbose ())
-           g_print (&quot;checking object is not empty...\n&quot;);
-         g_assert_cmpint (json_object_get_size (object), &gt;, 0);
-       }
+          if (g_test_verbose ())
+            g_print (&quot;checking object is not empty...\n&quot;);
+          g_assert_cmpint (json_object_get_size (object), &gt;, 0);
+        }
     }
 
   g_object_unref (parser);
@@ -504,7 +504,7 @@ test_assignment (void)
           g_assert (var != NULL);
           g_assert_cmpstr (var, ==, test_assignments[i].var);
           g_assert (NULL != json_parser_get_root (parser));
-       }
+        }
     }
 
   g_object_unref (parser);
@@ -550,21 +550,21 @@ test_unicode_escape (void)
           object = json_node_get_object (root);
           g_assert (object != NULL);
 
-         if (g_test_verbose ())
-           g_print (&quot;checking object is not empty...\n&quot;);
-         g_assert_cmpint (json_object_get_size (object), &gt;, 0);
+          if (g_test_verbose ())
+            g_print (&quot;checking object is not empty...\n&quot;);
+          g_assert_cmpint (json_object_get_size (object), &gt;, 0);
 
-         node = json_object_get_member (object, test_unicode[i].member);
-         g_assert_cmpint (JSON_NODE_TYPE (node), ==, JSON_NODE_VALUE);
+          node = json_object_get_member (object, test_unicode[i].member);
+          g_assert_cmpint (JSON_NODE_TYPE (node), ==, JSON_NODE_VALUE);
 
-         if (g_test_verbose ())
-           g_print (&quot;checking simple string equality...\n&quot;);
-         g_assert_cmpstr (json_node_get_string (node), ==, test_unicode[i].match);
+          if (g_test_verbose ())
+            g_print (&quot;checking simple string equality...\n&quot;);
+          g_assert_cmpstr (json_node_get_string (node), ==, test_unicode[i].match);
 
-         if (g_test_verbose ())
-           g_print (&quot;checking for valid UTF-8...\n&quot;);
-         g_assert (g_utf8_validate (json_node_get_string (node), -1, NULL));
-       }
+          if (g_test_verbose ())
+            g_print (&quot;checking for valid UTF-8...\n&quot;);
+          g_assert (g_utf8_validate (json_node_get_string (node), -1, NULL));
+        }
     }
 
   g_object_unref (parser);</diff>
      <filename>tests/test-parser.c</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>112a8ec8dfd9c46304008b62e8ab256ed7714644</id>
    </parent>
  </parents>
  <author>
    <name>Emmanuele Bassi</name>
    <email>ebassi@gnome.org</email>
  </author>
  <url>http://github.com/ebassi/json-glib/commit/7411cadc0fdd9ffc2bd7004c9980913ac857a495</url>
  <id>7411cadc0fdd9ffc2bd7004c9980913ac857a495</id>
  <committed-date>2009-06-28T15:52:34-07:00</committed-date>
  <authored-date>2009-06-28T15:52:34-07:00</authored-date>
  <message>Indentation fixes</message>
  <tree>7d5bf8b38c6d91fcf5922d25b901be5c9d07b3ca</tree>
  <committer>
    <name>Emmanuele Bassi</name>
    <email>ebassi@gnome.org</email>
  </committer>
</commit>
