lnt/server/ui/api.py [166:175]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        try:
            machine = ts.query(ts.Machine) \
                .filter(ts.Machine.id == machine_id) \
                .one()
            test = ts.query(ts.Test) \
                .filter(ts.Test.id == test_id) \
                .one()
            field = ts.sample_fields[field_index]
        except NoResultFound:
            return abort(404)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



lnt/server/ui/api.py [219:228]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            try:
                machine = ts.query(ts.Machine) \
                    .filter(ts.Machine.id == machine_id) \
                    .one()
                test = ts.query(ts.Test) \
                    .filter(ts.Test.id == test_id) \
                    .one()
                field = ts.sample_fields[field_index]
            except NoResultFound:
                return abort(404)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



