Skip to content

Commit

Permalink
Renaming _is_sane to _do_cross_table_consistency_check
Browse files Browse the repository at this point in the history
  • Loading branch information
mtlynch committed Jan 12, 2016
1 parent 78cd91d commit b028101
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions bigsanity/bigsanity.py
Expand Up @@ -27,7 +27,7 @@
'%(asctime)-15s %(levelname)-5s %(module)s.py:%(lineno)-d %(message)s')


def _is_sane(project, date_start, date_end, date_step):
def _do_cross_table_consistency_check(project, date_start, date_end, date_step):
"""Performs sanity checks on all the time windows in the given range.
Performs all BigSanity sanity checks on the M-Lab BigQuery tables for the
Expand Down Expand Up @@ -61,7 +61,8 @@ def main(args):
logging.basicConfig(level=log_level, format=LOG_FORMAT)
date_step = cli.get_interval(args)

_is_sane(args.project, args.start_date, args.end_date, date_step)
_do_cross_table_consistency_check(args.project, args.start_date,
args.end_date, date_step)


if __name__ == '__main__':
Expand Down

0 comments on commit b028101

Please sign in to comment.