@@ -614,35 +614,35 @@ def test_aggregate_ugrid(self):
614614 """Test ugrid aggregation"""
615615 f = cf .example_field (8 )
616616
617- # Test that aggregation over a non-ugrid (time, in this case )
618- # axis works.
617+ # Test that aggregation over a non-ugrid axis (time, in this
618+ # case) works.
619619 g = f .copy ()
620620 t = g .dim ("T" )
621- _ = cf .bounds_combination_mode ("OR" )
621+ cf .bounds_combination_mode ("OR" )
622622 t += 72000
623623 a = cf .aggregate ([f , g ])
624624 self .assertEqual (len (a ), 1 )
625625 a = a [0 ]
626626 self .assertEqual (len (a .domain_topologies ()), 1 )
627627 self .assertEqual (len (a .cell_connectivities ()), 1 )
628628
629- # Test that aggregation over non-ugrid axis doesn't work when
630- # the domain topology constructs are different
629+ # Test that aggregation over a non-ugrid axis doesn't work
630+ # when the domain topology constructs are different
631631 h = g .copy ()
632632 d = h .domain_topology ()
633633 d = d .data
634634 d += 1
635635 self .assertEqual (len (cf .aggregate ([f , h ])), 2 )
636636
637- # Test that aggregation over non-ugrid axis doesn't work when
638- # the cell connnectivty constructs are different
637+ # Test that aggregation over a non-ugrid axis doesn't work
638+ # when the cell connnectivty constructs are different
639639 h = g .copy ()
640640 c = h .cell_connectivity ()
641641 d = c .data
642642 d += 1
643643 self .assertEqual (len (cf .aggregate ([f , h ])), 2 )
644644
645- # Test that aggregation over ugrid axis doesn't work
645+ # Test that aggregation over a ugrid axis doesn't work
646646 g = f .copy ()
647647 x = g .aux ("X" )
648648 d = x .data
0 commit comments